All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.solovyev.common.exceptions.AnyRuntimeException Maven / Gradle / Ivy

The newest version!
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