summaryrefslogtreecommitdiff
path: root/src/bindings/compat/java/src/cvc3/CLException.java
blob: 5c1305006f284237aa8c27a5cb143576e0613817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package cvc3;

import java.util.*;

/** mirrors CVC3::CLException */
class CLException extends Cvc3Exception {

    private final static long serialVersionUID = 1L;

    public CLException(String message) {
	super(message);
    }
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback