Saving changes
Using asymmetric validation
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
|
||||
namespace Icarus.Exceptions
|
||||
{
|
||||
public class InvalidCredentialsException : Exception
|
||||
{
|
||||
public InvalidCredentialsException()
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidCredentialsException(string message) : base(message)
|
||||
{
|
||||
}
|
||||
|
||||
public InvalidCredentialsException(string message,
|
||||
Exception exception) : base(message, exception)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user