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, 0 insertions, 37 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
deleted file mode 100644
index 3d113a2599..0000000000
--- a/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java
+++ /dev/null
@@ -1,37 +0,0 @@
-// 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);
- }
-
-}