1 4 package com.tc.util; 5 6 import com.tc.exception.TCException; 7 8 13 public class TCTimeoutException extends TCException { 14 15 public TCTimeoutException(long timeout) { 16 this("Timeout of " + timeout + " occurred"); 17 } 18 19 public TCTimeoutException(String string) { 20 super(string); 21 } 22 23 public TCTimeoutException(Throwable cause) { 24 super(cause); 25 } 26 27 public TCTimeoutException(String reason, Throwable cause) { 28 super(reason, cause); 29 } 30 } | Popular Tags |