01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package com.tc.net.protocol;
06:
07: public class IllegalReconnectException extends Exception {
08:
09: public IllegalReconnectException() {
10: super ();
11: }
12:
13: public IllegalReconnectException(String message, Throwable cause) {
14: super (message, cause);
15: }
16:
17: public IllegalReconnectException(String message) {
18: super (message);
19: }
20:
21: public IllegalReconnectException(Throwable cause) {
22: super(cause);
23: }
24:
25: }
|