11 lines
320 B
C#
11 lines
320 B
C#
|
|
namespace public_valetax.Exceptions
|
||
|
|
{
|
||
|
|
public class SecureException : Exception
|
||
|
|
{
|
||
|
|
public SecureException() : base() { }
|
||
|
|
|
||
|
|
public SecureException(string message) : base(message) { }
|
||
|
|
|
||
|
|
public SecureException(string message, Exception innerException) : base(message, innerException) { }
|
||
|
|
}
|
||
|
|
}
|