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

net.dongliu.prettypb.runtime.exception.IllegalBeanException Maven / Gradle / Ivy

There is a newer version: 0.3.5
Show newest version
package net.dongliu.prettypb.runtime.exception;

/**
 * the bean is not a valid generated proto-bean class
 *
 * @author Dong Liu
 */
public class IllegalBeanException extends Exception {

    public IllegalBeanException() {
    }

    public IllegalBeanException(String message) {
        super(message);
    }

    public IllegalBeanException(String message, Throwable cause) {
        super(message, cause);
    }

    public IllegalBeanException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy