namespace ServiceShared.Models.Response.Exception { /// /// This exception will be thrown when some of required argument is missing /// public class MissingArgumentException : ResponseException { public override Types error_type => Types.MissingArgument; public override string message => "missing argument"; public string argument { get; } public MissingArgumentException(string argument) { this.argument = argument; } } }