summaryrefslogtreecommitdiffstats
path: root/libmlr/src/main/java/com/yahoo/yst/libmlr/converter/parser/DecisionTreeXmlException.java
blob: 3f792ef991f49ae298a2175ec51b3296620e087d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.yst.libmlr.converter.parser;

public class DecisionTreeXmlException extends RuntimeException {

    public DecisionTreeXmlException() {
        super();
    }

    public DecisionTreeXmlException(String msg) {
        super(msg);
    }

    public DecisionTreeXmlException(String msg, Throwable cause) {
        super(msg, cause);
    }
}