KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > verify > VerificationException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.verify;
5
6 import com.tc.exception.TCException;
7
8 /**
9  * Thrown when verification fails.
10  */

11 public class VerificationException extends TCException {
12
13   public VerificationException() {
14     super();
15   }
16
17   public VerificationException(String JavaDoc message) {
18     super(message);
19   }
20
21   public VerificationException(Throwable JavaDoc cause) {
22     super(cause);
23   }
24
25   public VerificationException(String JavaDoc message, Throwable JavaDoc cause) {
26     super(message, cause);
27   }
28
29 }
30
Popular Tags