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

org.stjs.generator.STJSRuntimeException Maven / Gradle / Ivy

There is a newer version: 3.3.2.2
Show newest version
package org.stjs.generator;

/**
 * this class is used to wrap checked exceptions that occur within the STJS code
 * 
 * @author acraciun
 */
public class STJSRuntimeException extends RuntimeException {

	/**
	 *
	 */
	private static final long serialVersionUID = 1L;

	public STJSRuntimeException(String message, Throwable cause) {
		super(message, cause);
	}

	public STJSRuntimeException(String message) {
		super(message);
	}

	public STJSRuntimeException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy