package gov.nih.nci.cagrid.metadata.exceptions; /** * @author oster * */ public class InternalRuntimeException extends RuntimeException { /** * */ public InternalRuntimeException() { super(); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public InternalRuntimeException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } /** * @param message */ public InternalRuntimeException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param cause */ public InternalRuntimeException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } }