Skip to content

Instantly share code, notes, and snippets.

@nerdsrescueme
Created November 7, 2011 21:15
Show Gist options
  • Save nerdsrescueme/1346208 to your computer and use it in GitHub Desktop.
Save nerdsrescueme/1346208 to your computer and use it in GitHub Desktop.
<?php
namespace Atom;
class HttpException extends \Exception {
public function __construct($message, $code)
{
$this->message = (empty($message)) ? 'GET FROM ARRAY' : $message;
}
}
/** End of file httpexception.php */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment