【PHP】CakePHP2.xの例外処理まとめ。

忘れるので、自分用めも。

// Bad Request エラー
throw new BadRequestException('message');

// Forbidden エラー
throw new ForbiddenException('message');

// Not Found エラー
throw new NotFoundException('message');

// Method Not Allowed エラー
throw new MethodNotAllowedException('message');

// Internal Server Error エラー
throw new InternalErrorException('message');

// Not Implemented Errors エラー
throw new NotImplementedException('message');