2023-02-05 17:24:22 -05:00
|
|
|
<?php
|
|
|
|
|
2023-02-05 17:27:32 -05:00
|
|
|
namespace TamerLib\Exceptions;
|
2023-02-05 17:24:22 -05:00
|
|
|
|
2023-06-12 21:32:35 -04:00
|
|
|
use Exception;
|
2023-02-05 17:24:22 -05:00
|
|
|
use Throwable;
|
|
|
|
|
2023-06-12 21:32:35 -04:00
|
|
|
class ServerException extends Exception
|
2023-02-05 17:24:22 -05:00
|
|
|
{
|
|
|
|
public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null)
|
|
|
|
{
|
|
|
|
parent::__construct($message, $code, $previous);
|
|
|
|
}
|
|
|
|
}
|