14 lines
212 B
PHP
Executable File
14 lines
212 B
PHP
Executable File
<?php
|
|
|
|
namespace Github\Exception;
|
|
|
|
/**
|
|
* BadMethodCallException
|
|
*
|
|
* @author James Brooks <jbrooksuk@me.com>
|
|
*/
|
|
class BadMethodCallException extends \BadMethodCallException implements ExceptionInterface
|
|
{
|
|
|
|
}
|