13 lines
343 B
C#
13 lines
343 B
C#
|
|
namespace AutoAgent.Domain.Exceptions
|
|||
|
|
{
|
|||
|
|
public class InputException : DomainException
|
|||
|
|
{
|
|||
|
|
public InputException(string message) : base(message) { }
|
|||
|
|
}
|
|||
|
|
public class UnexpectedInputButton : InputException
|
|||
|
|
{
|
|||
|
|
public UnexpectedInputButton(Models.Button button) : base($"Unexpected button {button}") { }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|