XBackBone/app/Exceptions/UnderMaintenanceException.php

14 lines
343 B
PHP
Raw Normal View History

2019-11-12 23:13:23 +00:00
<?php
namespace App\Exceptions;
use Slim\Exception\HttpSpecializedException;
class UnderMaintenanceException extends HttpSpecializedException
{
protected $code = 503;
protected $message = 'Platform Under Maintenance.';
protected $title = '503 Service Unavailable';
protected $description = 'We\'ll be back very soon! :)';
2019-11-20 17:49:31 +00:00
}