KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > util > TCAssertionError


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.util;
5
6 import com.tc.exception.TCRuntimeException;
7
8 public class TCAssertionError extends TCRuntimeException {
9
10   public TCAssertionError() {
11     super();
12   }
13
14   public TCAssertionError(String JavaDoc message) {
15     super(message);
16   }
17
18   public TCAssertionError(Throwable JavaDoc cause) {
19     super(cause);
20   }
21
22   public TCAssertionError(String JavaDoc message, Throwable JavaDoc cause) {
23     super(message, cause);
24   }
25
26 }
Popular Tags