package iaik; /** * Adapter class providing {@code iaik.RuntimeException} for libraries that have not been updated in order to consider * the fact that the class {@code IAIKRuntimeException} has been moved. * * @author tknall * */ public class IAIKRuntimeException extends iaik.server.modules.IAIKRuntimeException { private static final long serialVersionUID = 1L; public IAIKRuntimeException(String reason, Throwable wrapped, String uniqueIdentifier) { super(reason, wrapped, uniqueIdentifier); } }