summaryrefslogtreecommitdiff
path: root/support/texplate/source/main/java/org/islandoftex/texplate/exceptions/InvalidKeySetException.java
blob: 3d113a25998339dc0f19b51783be85e141f123bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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);
    }

}