01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.verify;
05:
06: import com.tc.exception.TCException;
07:
08: /**
09: * Thrown when verification fails.
10: */
11: public class VerificationException extends TCException {
12:
13: public VerificationException() {
14: super ();
15: }
16:
17: public VerificationException(String message) {
18: super (message);
19: }
20:
21: public VerificationException(Throwable cause) {
22: super (cause);
23: }
24:
25: public VerificationException(String message, Throwable cause) {
26: super(message, cause);
27: }
28:
29: }
|