1
0
mirror of https://github.com/mashirozx/sakura.git synced 2025-01-06 09:53:49 +08:00
sakura/app/lib/exception.php
2021-07-09 18:28:29 +08:00

16 lines
298 B
PHP

<?php
// memo: https://learnku.com/articles/5657/laravel-exceptions-exception-and-error-handling
namespace Sakura\Lib;
use Exception as BaseException;
class Exception extends BaseException
{
public function __construct($message, $code = 0)
{
parent::__construct($message, $code);
}
}