using System; using Sony.ChartBot.Entities; namespace Sony.ChartBot.Client.InputParsers { public class InvalidInputException : Exception { public InvalidInputType Type { get; set; } public string Input { get; set; } public InvalidInputException(InvalidInputType type, string input) : base($"Invalid input: {input}, could not parse to type {type}") { Type = type; Input = input; } } }