13 lines
221 B
C#
13 lines
221 B
C#
using System;
|
|
|
|
namespace SoundCapture
|
|
{
|
|
public class SoundCaptureException : Exception
|
|
{
|
|
public SoundCaptureException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|