HttpStatusException class abstract

Exception for HTTP status code. This abstract class is used to create custom exceptions for HTTP status codes.

Example:

class NotFoundException extends HttpStatusException {
   const NotFoundException(String message) : super(message, HttpStatus.notFound);
}
Implemented types

Constructors

HttpStatusException(String message, int statusCode)
const

Properties

hashCode int
The hash code for this object.
read-onlyinherited
message String
The message of the exception.
final
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
statusCode int
The http status code of the exception.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited