You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

26 lines
582 B

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)
{
}
}
}