
org.solovyev.common.exceptions.AnyRuntimeException Maven / Gradle / Ivy
package org.solovyev.common.exceptions;
/**
* User: serso
* Date: 3/6/11
* Time: 1:35 PM
*/
public class AnyRuntimeException extends RuntimeException {
public AnyRuntimeException() {
}
public AnyRuntimeException(String message) {
super(message);
}
public AnyRuntimeException(String message, Throwable cause) {
super(message, cause);
}
public AnyRuntimeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy