ScreenContainerNotFoundError
public struct ScreenContainerNotFoundError : ScreenError
No container found.
This error occurs whenever an action fails to find the container.
-
Declaration
Swift
public var description: String { get }
-
The type of container that could not be found.
Declaration
Swift
public let type: Any.Type
-
The action that caused the error.
Declaration
Swift
public let trigger: Any
-
Creates an error.
Declaration
Swift
public init(type: Any.Type, for trigger: Any)
Parameters
type
The type of container that could not be found.
trigger
The action that caused the error.