Dart DocumentationhttputilsURISyntaxException

URISyntaxException class

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

Implements

Exception

Constructors

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

const URISyntaxException([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() => message;