NotFoundException

class NotFoundException(val 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

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

Properties

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

The key that was not found.

Link copied to clipboard
open val message: String?