NotFoundException

class NotFoundException(key: DI.Key<*, *, *>, message: String) : RuntimeException

Exception thrown when asked for a dependency that cannot be found.

Parameters

message

The message of the exception.

Constructors

NotFoundException
Link copied to clipboard
common
fun NotFoundException(key: DI.Key<*, *, *>, message: String)

Properties

cause
Link copied to clipboard
common
open val cause: Throwable?
key
Link copied to clipboard
common
val key: DI.Key<*, *, *>

The key that was not found.

message
Link copied to clipboard
common
open val message: String?