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

com.agimatec.commons.generator.GeneratorException Maven / Gradle / Ivy

The newest version!
package com.agimatec.commons.generator;

/**
 * Description: runtime exception during generators (template exception etc)
*/ public class GeneratorException extends RuntimeException { public GeneratorException(String message) { super(message); } public GeneratorException(String message, Throwable cause) { super(message, cause); } public GeneratorException(Throwable cause) { super(cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy