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)
The message of the exception.

Functions

equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
toString
Link copied to clipboard
common
open fun toString(): 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?