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.net.protocol.tcm;
05:
06: import com.tc.exception.TCException;
07:
08: /**
09: * @author Orion Letizi
10: */
11: public class TCMessageException extends TCException {
12:
13: /**
14: *
15: */
16: public TCMessageException() {
17: super ();
18: }
19:
20: /**
21: * @param arg0
22: */
23: public TCMessageException(String arg0) {
24: super (arg0);
25: }
26:
27: /**
28: * @param arg0
29: */
30: public TCMessageException(Throwable arg0) {
31: super (arg0);
32: }
33:
34: /**
35: * @param arg0
36: * @param arg1
37: */
38: public TCMessageException(String arg0, Throwable arg1) {
39: super(arg0, arg1);
40: }
41:
42: }
|