Dart Documentationgoogle_oauth2_browserAuthException

AuthException class

class AuthException implements Exception {
 final String message;
 final Map<String, String> data;
 AuthException(this.message, this.data);
 toString() => "AuthException: $message";
}

Implements

Exception

Constructors

new AuthException(String message, Map<String, String> data) #

Creates a new Object instance.

Object instances have no meaningful state, and are only useful through their identity. An Object instance is equal to itself only.

docs inherited from Object
AuthException(this.message, this.data);

Properties

final Map<String, String> data #

final Map<String, String> data

final String message #

final String message

Methods

dynamic toString() #

Returns a string representation of this object.

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