mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-14 19:08:12 +08:00
16 lines
298 B
PHP
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);
|
|
}
|
|
}
|