14 lines
482 B
C#
14 lines
482 B
C#
using System;
|
|
|
|
namespace Essgee.Exceptions
|
|
{
|
|
[Serializable]
|
|
public class HandlerException : Exception
|
|
{
|
|
public HandlerException() : base() { }
|
|
public HandlerException(string message) : base(message) { }
|
|
public HandlerException(string message, Exception innerException) : base(message, innerException) { }
|
|
public HandlerException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|