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