summaryrefslogtreecommitdiff
path: root/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java
diff options
context:
space:
mode:
Diffstat (limited to 'support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java')
-rw-r--r--support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java37
1 files changed, 37 insertions, 0 deletions
diff --git a/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java b/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java
new file mode 100644
index 0000000000..3d113a2599
--- /dev/null
+++ b/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java
@@ -0,0 +1,37 @@
+// SPDX-License-Identifier: BSD-3-Clause
+package org.islandoftex.texplate.exceptions;
+
+/**
+ * Handles exceptions when the context map contains invalid keys.
+ *
+ * @version 1.0
+ * @since 1.0
+ */
+public class InvalidKeySetException extends Exception {
+
+ /**
+ * Constructor.
+ */
+ public InvalidKeySetException() {
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param message Message to be attached to the exception.
+ */
+ public InvalidKeySetException(String message) {
+ super(message);
+ }
+
+ /**
+ * Constructor.
+ *
+ * @param message Message to be attached to the exception.
+ * @param cause The throwable cause to be forwarded.
+ */
+ public InvalidKeySetException(String message, Throwable cause) {
+ super(message, cause);
+ }
+
+}