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

io.protostuff.generator.GeneratorException Maven / Gradle / Ivy

There is a newer version: 3.1.40
Show newest version
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