mirror of
https://github.com/nuxsmin/sysPass.git
synced 2026-03-03 15:14:08 +01:00
26 lines
760 B
PHP
26 lines
760 B
PHP
<?php
|
|
|
|
namespace SP\Modules\Web\Controllers\Helpers;
|
|
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
/**
|
|
* Class HelperException
|
|
* @package SP\Modules\Web\Controllers\Helpers
|
|
*/
|
|
class HelperException extends Exception
|
|
{
|
|
/**
|
|
* Construct the exception. Note: The message is NOT binary safe.
|
|
* @link http://php.net/manual/en/exception.construct.php
|
|
* @param string $message [optional] The Exception message to throw.
|
|
* @param int $code [optional] The Exception code.
|
|
* @param Throwable $previous [optional] The previous throwable used for the exception chaining.
|
|
* @since 5.1.0
|
|
*/
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
} |