1 4 package com.tc.async.api; 5 6 import com.tc.exception.TCException; 7 8 public class EventHandlerException extends TCException { 9 10 public EventHandlerException() { 11 this(null, null); 12 } 13 14 public EventHandlerException(String message) { 15 this(message, null); 16 } 17 18 public EventHandlerException(Throwable cause) { 19 this(null, cause); 20 } 21 22 public EventHandlerException(String message, Throwable cause) { 23 super(message, cause); 24 } 25 26 } | Popular Tags |