XBackBone/app/Exceptions/MaintenanceException.php
Sergio Brighenti ea6b9a4ebb Working on self update feature
Removed column too big (fixes #17)
2019-01-26 18:37:00 +01:00

15 lines
284 B
PHP

<?php
namespace App\Exceptions;
use Exception;
use Throwable;
class MaintenanceException extends Exception
{
public function __construct(string $message = 'Under Maintenance', int $code = 503, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}