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