summaryrefslogtreecommitdiffstats
path: root/javatoscachecker/kwalify/src/main/java/kwalify/SchemaException.java
blob: 5d53bd1f324363301e9cb88668f649bee9c2fff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * @(#)SchemaException.java	$Rev: 4 $ $Release: 0.5.1 $
 *
 * copyright(c) 2005 kuwata-lab all rights reserved.
 */

package kwalify;

/**
 * exception class thrown by Rule constructor
 * 
 * @revision    $Rev: 4 $
 * @release     $Release: 0.5.1 $
 */
public class SchemaException extends BaseException {
    private static final long serialVersionUID = 4750598728284538818L;

    public SchemaException(String message, String ypath, Object value, Rule rule, String errorSymbol) {
        super(message, ypath, value, rule, errorSymbol);
    }

}