INNER CODE UNIT · Kotlin
NotFoundException
kosi-libs/Kodein · kodein-di/src/commonMain/kotlin/org/kodein/di/DI.kt:47
public class NotFoundException(public val key: Key<*, *, *>, message: String) : RuntimeException(message)
/**
* Exception thrown when searching for bindings and none could be found.
*
* @property search The specs that lead to no result.
* @param message The message of the exception.
*/
public class NoResultException(public val search: SearchSpecs, message: String) : RuntimeException(message)
/**
* Exception thrown when there is an overriding error.
*
* @param message The message of the exception.
*/
public class OverridingException(message: String) : RuntimeException(message)
/**