io.protostuff.generator.GeneratorException Maven / Gradle / Ivy
package io.protostuff.generator;
/**
* Exception that can be thrown by code generators.
*
* @author Kostiantyn Shchepanovskyi
*/
public class GeneratorException extends RuntimeException {
public GeneratorException(String format, Object... args) {
super(String.format(format, args));
}
public GeneratorException(String message, Throwable cause) {
super(message, cause);
}
public GeneratorException(String format, Throwable cause, Object... args) {
super(String.format(format, args), cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy