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