19 lines
372 B
PHP
19 lines
372 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Jaeger <JaegerCode@gmail.com>
|
|
* Date: 18/12/12
|
|
* Time: 上午10:56
|
|
*/
|
|
|
|
namespace Jaeger;
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
class MethodNotFoundException extends Exception
|
|
{
|
|
public function __construct($message = "", $code = 0, Throwable $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
} |