ScreenContainerNotSupportedError
public struct ScreenContainerNotSupportedError : ScreenError
The container type is not supported.
This error occurs whenever an action handles an unsupported container type.
-
Declaration
Swift
public var description: String { get }
-
Container that is not supported.
Declaration
Swift
public let container: ScreenContainer
-
The action that caused the error.
Declaration
Swift
public let trigger: Any
-
Creates an error.
Declaration
Swift
public init(container: ScreenContainer, for trigger: Any)
Parameters
container
Container that does not match the expected type.
trigger
The action that caused the error.