using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceShared.Models.Response.Exception { /// /// This exception will be thrown when Maintenance mode has been activated /// public class MaintenanceException : ResponseException { public override Types error_type => Types.Maintenance; public override string message => "maintenance activated"; } }