AI-generated Key Takeaways
-
UMPFormErrorCode
is an enumeration of error codes used when loading and showing forms in an application. -
These error codes indicate issues like internal errors, form unavailability, timeouts, and more.
-
Each error code has a corresponding integer value for identification and handling.
-
Developers can use these codes to understand the cause of form loading/display failures and implement appropriate error handling.
-
Defined error codes include internal error, already used form, unavailable form, loading timeout, and invalid view controller.
UMPFormErrorCode
enum UMPFormErrorCode : NSInteger {}
Error codes used when loading and showing forms.
-
< Internal error.
Declaration
Swift
case `internal` = 5
Objective-C
UMPFormErrorCodeInternal = 5
-
< Form was already used.
Declaration
Swift
case alreadyUsed = 6
Objective-C
UMPFormErrorCodeAlreadyUsed = 6
-
< Form is unavailable.
Declaration
Swift
case unavailable = 7
Objective-C
UMPFormErrorCodeUnavailable = 7
-
< Loading a form timed out.
Declaration
Swift
case timeout = 8
Objective-C
UMPFormErrorCodeTimeout = 8
-
Undocumented
Declaration
Swift
case invalidViewController = 9
Objective-C
UMPFormErrorCodeInvalidViewController = 9