RoutingError
public enum RoutingError : Error, CustomStringConvertible
Routing Error
representation
-
Type mismatch error
Declaration
Swift
case typeMismatch(type: Any.Type, expectedType: Any.Type, RoutingError.Context)
-
The view controllers stack integration failed
Declaration
Swift
case compositionFailed(RoutingError.Context)
-
The view controller can not be dismissed. See
RoutingInterceptable.canBeDismissed
.Declaration
Swift
case cantBeDismissed(RoutingError.Context)
-
Initial view controller error
Declaration
Swift
case initialController(InitialControllerErrorState, RoutingError.Context)
-
Message describing error that happened
Declaration
Swift
case generic(RoutingError.Context)
-
Declaration
Swift
public var description: String { get }
-
Returns
RoutingError.Context
instanceDeclaration
Swift
public var context: RoutingError.Context { get }