Dart Documentationclean_ajax.serverUnknownHandlerException

UnknownHandlerException class

Exception thrown when a MultiRequestHandler can pass one of multiple request to any handler

class UnknownHandlerException implements Exception {
 /**
  * A message describing the format error.
  */
 final String message;

 /**
  * Creates a new FormatException with an optional error [message].
  */
 const UnknownHandlerException([this.message = ""]);

 String toString() => "UnknownHandlerException: $message";
}

Implements

Exception

Constructors

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

Creates a new FormatException with an optional error message.

const UnknownHandlerException([this.message = ""]);

Properties

final String message #

A message describing the format error.

final String message

Methods

String toString() #

Returns a string representation of this object.

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