![JAR search and dependency download from the Maven repository](/logo.png)
net.dongliu.prettypb.runtime.exception.ProtoDeSerializeException 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;
/**
* serialize proto value failed
*
* @author Dong Liu
*/
public class ProtoDeSerializeException extends RuntimeException {
public ProtoDeSerializeException() {
}
public ProtoDeSerializeException(String message) {
super(message);
}
public ProtoDeSerializeException(String message, Throwable cause) {
super(message, cause);
}
public ProtoDeSerializeException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy