summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/support/texplate/main/kotlin/org/islandoftex/texplate/exceptions/TemplateMergingException.kt
blob: e1760f8732cf6e75916055844856fd4dca366b5b (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
// SPDX-License-Identifier: BSD-3-Clause
package org.islandoftex.texplate.exceptions

/**
 * Handles exceptions when the template merging failed.
 *
 * @version 1.0
 * @since 1.0
 */
class TemplateMergingException : Exception {
    /**
     * Constructor.
     */
    constructor()

    /**
     * Constructor.
     *
     * @param message Message to be attached to the exception.
     */
    constructor(message: String?) : super(message)

    /**
     * Constructor.
     *
     * @param message Message to be attached to the exception.
     * @param cause The throwable cause to be forwarded.
     */
    constructor(message: String?, cause: Throwable?) : super(message, cause)
}