| Current Path : /var/www/html/ajay/phpwebsite-1.8.x/Global/Http/ |
| Current File : /var/www/html/ajay/phpwebsite-1.8.x/Global/Http/MethodNotAllowedException.php |
<?php
namespace Http;
/**
* Description
* @author Jeff Tickle <jtickle at tux dot appstate dot edu>
*/
class MethodNotAllowedException extends Exception
{
protected function createResponse(\Request $request, \Exception $previous = null)
{
return new MethodNotAllowedResponse($request, $previous);
}
}
?>