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

nz.ac.auckland.syllabus.hooks.EventHookException.groovy Maven / Gradle / Ivy

package nz.ac.auckland.syllabus.hooks

/**
 * User: marnix
 * Date: 3/04/13
 * Time: 12:37 PM
 *
 * This exception is thrown when an error occured in a @BeforeEvent element
 */
class EventHookException extends Exception {

	EventHookException(String message) {
		super(message)
	}

	EventHookException(String message, Throwable cause) {
		super(message, cause)
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy