IdpExceptions
public enum IdpExceptions : LocalizedError, Sendable
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. -
A localized description of the error, used by
LocalizedError.Declaration
Swift
public var errorDescription: String? { get }
View on GitHub