diff options
author | Roman Gräf <romangraef@gmail.com> | 2020-04-30 03:28:48 +0200 |
---|---|---|
committer | Roman Gräf <romangraef@gmail.com> | 2020-04-30 03:28:48 +0200 |
commit | a22fd2a6b3248d8b9309d3a88ccc7e107d0cfcd8 (patch) | |
tree | 9a93ab31f0fee1c242bd1565dcb1c8823948622a /src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt | |
download | jrconfig-a22fd2a6b3248d8b9309d3a88ccc7e107d0cfcd8.tar.gz jrconfig-a22fd2a6b3248d8b9309d3a88ccc7e107d0cfcd8.tar.bz2 jrconfig-a22fd2a6b3248d8b9309d3a88ccc7e107d0cfcd8.zip |
Initial commitv0.1
Diffstat (limited to 'src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt')
-rw-r--r-- | src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt b/src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt new file mode 100644 index 0000000..4cf03b8 --- /dev/null +++ b/src/main/kotlin/com/romangraef/jrconfig/ConfigMissingProviderException.kt @@ -0,0 +1,4 @@ +package com.romangraef.jrconfig + +class ConfigMissingProviderException(val clazz: Class<*>) : + RuntimeException("You are missing a config provider for the type ${clazz.canonicalName}") |