1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-02-22 06:17:45 +01:00
openstamanager/app/Exceptions/LegacyRedirectException.php
2021-02-19 14:39:39 +01:00

15 lines
272 B
PHP

<?php
namespace App\Exceptions;
use Exception;
use Throwable;
class LegacyRedirectException extends Exception
{
public function __construct($message = '', $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
}