IdpExceptions
public enum IdpExceptions : LocalizedError
                A class representing IdpExceptions
- 
                  
                  
An unsupportedIdpException
Declaration
Swift
case unsupportedIdpException(message: String? = nil)Parameters
messageA descriptive message about the error (optional).
 - 
                  
                  
An IllegalArgumentException
Declaration
Swift
case illegalArgumentException(message: String? = nil)Parameters
messageA descriptive message about the error (optional).
 - 
                  
                  
An IllegalStateException
Declaration
Swift
case illegalStateException(message: String? = nil)Parameters
messageA descriptive message about the error (optional).
 - 
                  
                  
An idpCanceledException
Declaration
Swift
case idpCanceledException(message: String? = nil)Parameters
messageA descriptive message about the error (optional).
 - 
                  
                  
Provides a human-readable description of the error.
Declaration
Swift
public var errorMessage: String { get }Return Value
A
Stringrepresenting the error message. 
            View on GitHub