summaryrefslogtreecommitdiffstats
path: root/dcaedt_validator/kwalify/src/main/java/kwalify/SchemaException.java
blob: 70dafe95d859f33ff01e0ff6fc52ebf125c0df5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * copyright(c) 2005 kuwata-lab all rights reserved.
 */

package kwalify;

/**
 * exception class thrown by Rule constructor
 */
public class SchemaException extends BaseException {
    private static final long serialVersionUID = 4750598728284538818L;

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

}