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

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

Inherited by com.gallagher.security.mobileaccess.SaltoError.AddKeyFailed, com.gallagher.security.mobileaccess.SaltoError.CloudConnectionError, com.gallagher.security.mobileaccess.SaltoError.DecryptionError, com.gallagher.security.mobileaccess.SaltoError.DeleteKeyFailed, com.gallagher.security.mobileaccess.SaltoError.DeserializationError, com.gallagher.security.mobileaccess.SaltoError.GetKeysFailed, com.gallagher.security.mobileaccess.SaltoError.MobileCredentialNotFound, com.gallagher.security.mobileaccess.SaltoError.SaltoSdkError, com.gallagher.security.mobileaccess.SaltoError.SaltoSdkSetupError, and com.gallagher.security.mobileaccess.SaltoError.Unexpected.

Classes

class  AddKeyFailed
 
class  CloudConnectionError
 
class  DecryptionError
 
class  DeleteKeyFailed
 
class  DeserializationError
 
class  GetKeysFailed
 
class  MobileCredentialNotFound
 
class  SaltoSdkError
 
class  SaltoSdkSetupError
 
class  Unexpected
 

Public Member Functions

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

Constructor & Destructor Documentation

◆ SaltoError() [1/3]

com.gallagher.security.mobileaccess.SaltoError.SaltoError ( )
129 {
130 super();
131 }

◆ SaltoError() [2/3]

com.gallagher.security.mobileaccess.SaltoError.SaltoError ( Throwable  cause)
132 {
133 super(cause);
134 }

◆ SaltoError() [3/3]

com.gallagher.security.mobileaccess.SaltoError.SaltoError ( String  message)
135 {
136 super(message);
137 }

Member Function Documentation

◆ equals()

boolean com.gallagher.security.mobileaccess.SaltoError.equals ( @Nullable Object  obj)
141 {
142 if (!(obj instanceof SaltoError))
143 return false;
144 return stringValue().equals(((SaltoError)obj).stringValue());
145 }

◆ hashCode()

int com.gallagher.security.mobileaccess.SaltoError.hashCode ( )
149 {
150 return stringValue().hashCode();
151 }

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