Gallagher Mobile Connect SDK
Classes | Public Member Functions | Protected Member Functions | List of all members
com.gallagher.security.mobileaccess.AperioError Class Referenceabstract

Inherits Error, and com.gallagher.security.mobileaccess.StringValueConvertible.

Inherited by com.gallagher.security.mobileaccess.AperioError.AddKeyFailed, com.gallagher.security.mobileaccess.AperioError.DecryptionError, com.gallagher.security.mobileaccess.AperioError.DeleteKeyFailed, com.gallagher.security.mobileaccess.AperioError.DeserializationError, com.gallagher.security.mobileaccess.AperioError.GetKeysFailed, com.gallagher.security.mobileaccess.AperioError.KeyFormatError, com.gallagher.security.mobileaccess.AperioError.MobileCredentialNotFound, and com.gallagher.security.mobileaccess.AperioError.Unexpected.

Classes

class  AddKeyFailed
 
class  DecryptionError
 
class  DeleteKeyFailed
 
class  DeserializationError
 
class  GetKeysFailed
 
class  KeyFormatError
 
class  MobileCredentialNotFound
 
class  Unexpected
 

Public Member Functions

boolean equals (@Nullable Object obj)
 
int hashCode ()
 
- Public Member Functions inherited from com.gallagher.security.mobileaccess.StringValueConvertible
String stringValue ()
 

Protected Member Functions

 AperioError (Throwable cause)
 
 AperioError (String message)
 

Detailed Description

Represents Errors that can occur within the Aperio Integration part of the Mobile Connect SDK

Constructor & Destructor Documentation

◆ AperioError() [1/2]

com.gallagher.security.mobileaccess.AperioError.AperioError ( Throwable  cause)
protected
13 {
14 super(cause);
15 }

◆ AperioError() [2/2]

com.gallagher.security.mobileaccess.AperioError.AperioError ( String  message)
protected
16 {
17 super(message);
18 }

Member Function Documentation

◆ equals()

boolean com.gallagher.security.mobileaccess.AperioError.equals ( @Nullable Object  obj)
22 {
23 if (!(obj instanceof AperioError))
24 return false;
25 return stringValue().equals(((AperioError)obj).stringValue());
26 }

◆ hashCode()

int com.gallagher.security.mobileaccess.AperioError.hashCode ( )
30 {
31 return stringValue().hashCode();
32 }

The documentation for this class was generated from the following file: