Dart API Referencedart:ioHttpException

HttpException class

class HttpException implements Exception {
 const HttpException([String this.message = ""]);
 String toString() => "HttpException: $message";
 final String message;
}

Subclasses

RedirectException

Implements

Exception

Constructors

const HttpException([String message = ""]) #

const HttpException([String this.message = ""]);

Properties

final String message #

final String message

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "HttpException: $message";