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

package kwalify;

/**
 * exception class which represents validation error.
 *
 * @revision    $Rev: 4 $
 * @release     $Release: 0.5.1 $
 */
public class ValidationException extends BaseException {
    private static final long serialVersionUID = -2991121377463453973L;

    public ValidationException(String message, String path, Object value, Rule rule, String error_symbol) {
        super(message, path, value, rule, error_symbol);
    }

    public ValidationException(String message, String path) {
        this(message, path, null, null, null);
    }

}