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: */package com.tc.util;
04:
05: import com.tc.exception.TCRuntimeException;
06:
07: /**
08: * Assertion error thrown by {@link Assert}.
09: */
10: public class TCAssertionError extends TCRuntimeException {
11:
12: public TCAssertionError() {
13: super ();
14: }
15:
16: public TCAssertionError(String message) {
17: super (message);
18: }
19:
20: public TCAssertionError(Throwable cause) {
21: super (cause);
22: }
23:
24: public TCAssertionError(String message, Throwable cause) {
25: super(message, cause);
26: }
27:
28: }
|