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

software.coley.cafedude.InvalidCodeException Maven / Gradle / Ivy

Go to download

Tree module for CafeDude, containing a simplified intermediate model for classes

The newest version!
package software.coley.cafedude;

/**
 * Exception thrown for invalid code models.
 *
 * @author Justus Garbe
 */
public class InvalidCodeException extends InvalidClassException {
	/**
	 * @param msg
	 * 		Invalid reason.
	 */
	public InvalidCodeException(String msg) {
		super(msg);
	}

	/**
	 * @param t
	 * 		Invalid parent cause.
	 */
	public InvalidCodeException(Throwable t) {
		super(t);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy