Errors

  • A protocol representing an error that occurs during navigation.

    Declaration

    Swift

    public protocol ScreenError : CustomStringConvertible, Error
  • Action canceled.

    This error occurs whenever an action is canceled.

    See more

    Declaration

    Swift

    public struct ScreenCanceledError : ScreenError
  • No container found.

    This error occurs whenever an action fails to find the container.

    See more

    Declaration

    Swift

    public struct ScreenContainerNotFoundError : ScreenError
  • The container type is not supported.

    This error occurs whenever an action handles an unsupported container type.

    See more

    Declaration

    Swift

    public struct ScreenContainerNotSupportedError : ScreenError
  • The type of the container does not match the expected type.

    This error occurs whenever an action fails to cast the container to the expected type.

    See more

    Declaration

    Swift

    public struct ScreenContainerTypeMismatchError : ScreenError