SAMLError
public enum SAMLError : Error
extension SAMLError: SAPError
Enumeration to describe the errors of the SAML authentication.
-
There was an error in the web view component. The error contains the propagated error.
Declaration
Swift
case webView(error: Error) -
A method got called with invalid argument(s).
Declaration
Swift
case invalidArgument(detail: String) -
There is already an ongoing authentication process.
Declaration
Swift
case authenticationInProgress -
The newly acquired credentials got rejected.
Declaration
Swift
case credentialsRejected -
The authenticate method was calling in background mode, which is not supported.
Declaration
Swift
case backgroundAuthentication -
The authentication got cancelled.
Declaration
Swift
case cancelled -
The webView/login page got refreshed
Declaration
Swift
case webViewReloaded -
A textual representation of this instance.
Declaration
Swift
public var description: String { get } -
A localized message describing what error occurred.
Declaration
Swift
public var errorDescription: String? { get } -
A textual representation of this instance, suitable for debugging.
Declaration
Swift
public var debugDescription: String { get } -
A localized message describing the reason for the failure.
Declaration
Swift
public var failureReason: String? { get }