rhino.errorsclass HTTPExceptionBase class for HTTP Exceptions
Class variables:
message will be HTML-escaped.
Instance properties:
rhino.Response instance that will be sent to the client.
The constructor takes one argument, an optional message that will replace the default message. Subclasses can override the constructor to require error-specific arguments.
class RedirectionBase class for redirections (3xx).
class ClientErrorBase class for client errors (4xx).
class ServerErrorBase class for server errors (5xx).
class MovedPermanently301 Moved Permanently.
Required arguments:
class Found302 Found.
Required arguments:
class SeeOther303 See Other.
Required arguments:
class TemporaryRedirect307 Temporary Redirect.
Required arguments:
class BadRequest400 Bad Request.
class Forbidden403 Forbidden.
class NotFound404 NotFound.
class MethodNotAllowed405 Method Not Allowed.
Required arguments:
class NotAcceptable406 Not Acceptable.
class Gone410 Gone.
class UnsupportedMediaType415 Unsupported Media Type.
class InternalServerError500 Internal Server Error.