Dart DocumentationsqljockyMySqlClientError

MySqlClientError class

An error which is thrown when the client is used improperly.

class MySqlClientError extends Error {
 final String message;
 
 /**
  * Create a [MySqlClientError]
  */
 MySqlClientError._(this.message);
 
 String toString() => "MySQL Client Error: $message";
}

Extends

Error > MySqlClientError

Properties

final String message #

final String message

final StackTrace stackTrace #

inherited from Error
external StackTrace get stackTrace;

Methods

String toString() #

Returns a string representation of this object.

docs inherited from Object
String toString() => "MySQL Client Error: $message";