
net.dongliu.prettypb.runtime.exception.IllegalDataException 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
The newest version!
package net.dongliu.prettypb.runtime.exception;
/**
* the bean's value is not valid for proto
*
* @author Dong Liu
*/
public class IllegalDataException extends Exception {
public IllegalDataException() {
}
public IllegalDataException(String message) {
super(message);
}
public IllegalDataException(String message, Throwable cause) {
super(message, cause);
}
public IllegalDataException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy