Merge pull request #8646 from ravage84/2.x-exceptions

Correct DocBlock for HttpException
This commit is contained in:
Mark Story 2016-04-14 12:08:21 -04:00
commit fba5439830

View file

@ -53,14 +53,15 @@ class CakeBaseException extends RuntimeException {
}
if (!class_exists('HttpException', false)) {
/**
* Parent class for all of the HTTP related exceptions in CakePHP.
*
* All HTTP status/error related exceptions should extend this class so
* catch blocks can be specifically typed.
*
* @package Cake.Error
*/
if (!class_exists('HttpException', false)) {
class HttpException extends CakeBaseException {
}
}