summaryrefslogtreecommitdiffstats
path: root/configgen/src/main/java/com/yahoo/config/codegen/CodegenRuntimeException.java
blob: 56a87c0506e60eedd8c4a5b19da0d8a98a78d56c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 2016 Yahoo Inc. 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);
    }
}