namespace com.hitrust.Security
|
|
{
|
|
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
[Serializable]
|
|
public class SecurityException : Exception
|
|
{
|
|
public SecurityException()
|
|
{
|
|
}
|
|
|
|
public SecurityException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
protected SecurityException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
|
|
public SecurityException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|