namespace ServiceShared.Models.Response.Exception { /// /// This exception will be thrown when some of unexpected exception was thrown /// public class UnknownException : ResponseException { public override Types error_type => Types.Unknown; public override string message => "unknown exception"; } }