A type of ToolchainValidationException which is thrown when a toolchains file key is referenced but missing.
To run this example, clone Jervis and execute ./gradlew console to bring up a Groovy Console with the classpath set up.
import net.gleske.jervis.exceptions.ToolchainMissingKeyException
throw new ToolchainMissingKeyException('somekey')| Constructor and description |
|---|
ToolchainMissingKeyException
(String message)Throw an exception when toolchains file key is referenced but missing. |
| Methods inherited from class | Name |
|---|---|
class Exception |
printStackTrace, printStackTrace, printStackTrace, fillInStackTrace, getCause, initCause, toString, getMessage, getLocalizedMessage, getStackTrace, setStackTrace, addSuppressed, getSuppressed, wait, wait, wait, equals, hashCode, getClass, notify, notifyAll |
Throw an exception when toolchains file key is referenced but missing. This usually means that it is referenced in the toolchains key but the toolchain does not actually exist.
message - A simple message that will be prepended with 'Missing key: ' + messageJervis API documentation.