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

package kwalify;

/**
 * exception class thrown by Util.compareValues() when comparing different type values.
 * 
 * @revision    $Rev: 4 $
 * @release     $Release: 0.5.1 $
 */
public class InvalidTypeException extends KwalifyRuntimeException {
    private static final long serialVersionUID = -6937887618526171845L;

    public InvalidTypeException(String message) {
        super(message);
    }
}