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

}