25 lines
559 B
C#
25 lines
559 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace APT.Infrastructure.Core
|
|
{
|
|
[Serializable]
|
|
public class NoSessionException: Exception
|
|
{
|
|
public NoSessionException()
|
|
{ }
|
|
|
|
public NoSessionException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public NoSessionException(string message, Exception inner)
|
|
: base(message, inner)
|
|
{ }
|
|
|
|
protected NoSessionException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{ }
|
|
}
|
|
}
|