changes
This commit is contained in:
11
Exceptions/SecureException.cs
Normal file
11
Exceptions/SecureException.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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) { }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user