10 lines
207 B
PHP
10 lines
207 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
|
|
class Kohana_HTTP_Exception_405 extends HTTP_Exception {
|
|
|
|
/**
|
|
* @var integer HTTP 405 Method Not Allowed
|
|
*/
|
|
protected $_code = 405;
|
|
|
|
} |