fromMap static method

AliasExistsException fromMap(
  1. Map<String, String> serializedException
)
override

Returns a new instance of this exception constructed from the serialized exception data.

Implementation

static AliasExistsException fromMap(Map<String, String> serializedException) {
  return AliasExistsException._private(
    AuthException.fromMap(serializedException),
  );
}