for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Simple Exception to represent http-based Exceptions.
*
* PHP version 5.3
* @category Exception
* @package Teapot
* @author Barney Hanlon <[email protected]>
* @copyright 2013-2016 B Hanlon. All rights reserved.
* @license MIT http://opensource.org/licenses/MIT
* @link https://shrikeh.github.com/teapot
*/
namespace Teapot;
class HttpException extends \Exception implements StatusCode
{
* The standard HTTP 1.1 prefix.
* @var string
const HTTP1_1_PREFIX = 'HTTP/1.1';
* Simple magic so you can use the Exception directly as a string, for
* example in header();.
* @return string A fully valid status header
public function __toString()
// I dislike functionality inside magic methods,
// so this just proxies to render().
return $this->render();
}
* Render the code and message (in whole or in part) as a valid
* response status header.
* @param bool $prependHttp Whether to prepend the HTTP/1.1 prefix
* @return string
public function render($prependHttp = true)
$string = $this->getCode().' '.$this->getMessage();
if (true === $prependHttp) {
$string = self::HTTP1_1_PREFIX.' '.$string;
return $string;