win32-automation-agent/Domain/Exceptions/InputException.cs
2026-01-08 21:33:01 +03:00

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