Dart API Referencedart:ioHttpParserException

HttpParserException class

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

Implements

Exception

Constructors

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

const HttpParserException([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() => "HttpParserException: $message";