DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_validator / kwalify / src / main / java / kwalify / SchemaException.java
1 /*
2  * copyright(c) 2005 kuwata-lab all rights reserved.
3  */
4
5 package kwalify;
6
7 /**
8  * exception class thrown by Rule constructor
9  */
10 public class SchemaException extends BaseException {
11     private static final long serialVersionUID = 4750598728284538818L;
12
13     public SchemaException(String message, String ypath, Object value, Rule rule) {
14         super(message, ypath, value, rule);
15     }
16
17 }