Dart API Referencedart:coreIllegalJSRegExpException

IllegalJSRegExpException class

class IllegalJSRegExpException implements Exception {
  const IllegalJSRegExpException(String this._pattern, String this._errmsg);
  String toString() => "IllegalJSRegExpException: '$_pattern' '$_errmsg'";
  final String _pattern;
  final String _errmsg;
}

Implements

Exception

Constructors

const IllegalJSRegExpException(String _pattern, String _errmsg) #

const IllegalJSRegExpException(String this._pattern, String this._errmsg);

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "IllegalJSRegExpException: '$_pattern' '$_errmsg'";