mirror of
https://github.com/devcode-it/openstamanager.git
synced 2025-02-22 06:17:45 +01:00
15 lines
272 B
PHP
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);
|
|
}
|
|
}
|