summaryrefslogtreecommitdiffstats
path: root/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java
blob: b4ca53d02db0c8fb50a5747ba652317b24ecbc47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.config.codegen;

/**
 * This exception is thrown on internal errors.
 *
 * @author <a href="gv@yahoo-inc.com">G. Voldengen</a>
 */
public class CodegenRuntimeException extends RuntimeException {
    public CodegenRuntimeException(String s, Throwable cause) {
        super(s, cause);
    }

    public CodegenRuntimeException(Throwable cause) {
        super(cause);
    }

    public CodegenRuntimeException(String s) {
        super(s);
    }
}