com.g2forge.alexandria.java.concurrent.RuntimeInterruptedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.concurrent;
import com.g2forge.alexandria.java.core.error.IRuntimeWrappingException;
public class RuntimeInterruptedException extends RuntimeException implements IRuntimeWrappingException {
private static final long serialVersionUID = -2250012381759988490L;
public RuntimeInterruptedException(final InterruptedException cause) {
super(cause);
}
public RuntimeInterruptedException(final String message, final InterruptedException cause) {
super(message, cause);
}
}