ENUM
HaapiUIKitError
Contents
- Cases
illegalState(_:)
unsupportedMap(objName:expectedObjName:)
unsupported(cause:)
other(_:)
public enum HaapiUIKitError: Error
The Haapi UI Kit Error. Any of these cases can occurrs in IdsvrHaapiUIKit.
Cases
illegalState(_:)
case illegalState(_ reason: String)
The flow ended up in an illegal state which cannot be recovered for a following reason
.
- Parameter reason: the reason for the error.
unsupportedMap(objName:expectedObjName:)
case unsupportedMap(objName: String, expectedObjName: String)
The objName
cannot be mapped to the expectedObjName
.
- Parameter objName: the name of the object to be mapped to
- Parameter expectedObjName: the expected obj name/
unsupported(cause:)
case unsupported(cause: String)
The flow ended due to an unsupported cause
.
- Parameter cause: the cause.
other(_:)
case other(_ error: Error)
An error
occurs in the frameworks or any reasons (e.g. system) and it is forwarded.
- Parameter error: the error