21 lines
445 B
C#
21 lines
445 B
C#
namespace Voile.Common;
|
|
|
|
public class VoileException : Exception
|
|
{
|
|
public VoileException()
|
|
{
|
|
}
|
|
|
|
public VoileException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public VoileException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
|
|
protected VoileException(
|
|
System.Runtime.Serialization.SerializationInfo info,
|
|
System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|