1 17 18 package org.apache.geronimo.gbean; 19 20 24 public class WaitingException extends Exception { 25 public WaitingException() { 26 } 27 28 public WaitingException(String message) { 29 super(message); 30 } 31 32 public WaitingException(String message, Throwable cause) { 33 super(message, cause); 34 } 35 36 public WaitingException(Throwable cause) { 37 super(cause); 38 } 39 } 40 | Popular Tags |