[#1509] Minor improvements in the generator source code. GitHub pull

request #23 - Added Javadoc
This commit is contained in:
Lukas Eder 2012-06-29 17:27:54 +02:00
parent 218eea19a9
commit 5f59b6061b

View File

@ -35,6 +35,11 @@
*/
package org.jooq.util;
/**
* An unchecked <code>Exception</code> to wrap all fatal generator exceptions.
*
* @author Aaron Digulla
*/
public class GeneratorException extends RuntimeException {
private static final long serialVersionUID = 1L;
@ -46,5 +51,4 @@ public class GeneratorException extends RuntimeException {
public GeneratorException(String message, Throwable cause) {
super(message, cause);
}
}