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.object;
05:
06: /**
07: * @author orion
08: */
09: public class TCObjectException extends Exception {
10: TCObjectException() {
11: super ();
12: }
13:
14: TCObjectException(Exception e) {
15: super (e);
16: }
17:
18: TCObjectException(String message) {
19: super(message);
20: }
21: }
|