com.github.libgraviton.gdk.generator.exception.GeneratorException Maven / Gradle / Ivy
package com.github.libgraviton.gdk.generator.exception;
/**
* Is thrown when the POJO generation fails.
*/
public class GeneratorException extends Exception {
public GeneratorException(String message, Exception e) {
super(message, e);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy