![JAR search and dependency download from the Maven repository](/logo.png)
net.dongliu.prettypb.runtime.exception.IllegalBeanException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prettypb-runtime Show documentation
Show all versions of prettypb-runtime Show documentation
Prettypb serialization runtime
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