Skip to content

nueko/php-http-exception

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Errors Exception

Features

  • HTTP status code
    /**
     * @var \Exception $e 
     */
    $e->getCode();
    // 502
  • HTTP status text
    /**
     * @var \Exception $e
     */
    $e->getMessage();
    // Bad Gateway
  • HTTP error explanation
    /**
     * @var \Exception $e
     */
    $e->getExplanation();
    // Indicates that the server, while acting as a gateway or proxy, received an invalid response from an inbound server it accessed while attempting to fulfill the request.
  • HTTP error spec
    /**
     * @var \Exception $e
     */
    $e->getSpec();
    // RFC7231#6.6.3
  • HTTP error reference
    /**
     * @var \Exception $e
     */
    $e->getReference();
    // http://tools.ietf.org/html/rfc7231#section-6.6.3
  • HTTP status
    /**
     * @var \Exception $e
     */
    $e->getStatus() 
    // 502 Bad Gateway

About

PHP HTTP Error Exceptions

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages