namespace ServiceShared.Models.Response.Exception { /// /// This exception will be thrown when the required action by client is not authorized /// public class NotAuthorizedException : ResponseException { public override Types error_type => Types.NotAuthorized; public override string message => "not authorized"; } }