![JAR search and dependency download from the Maven repository](/logo.png)
net.dongliu.prettypb.runtime.exception.MissRequiredFieldException 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;
/**
* when field is marked as required, but not contained in data
*
* @author Dong Liu
*/
public class MissRequiredFieldException extends Exception {
public MissRequiredFieldException() {
}
public MissRequiredFieldException(String message) {
super(message);
}
public MissRequiredFieldException(String message, Throwable cause) {
super(message, cause);
}
public MissRequiredFieldException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy