net.dongliu.prettypb.runtime.exception.UnExpectedEOFException 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 UnExpectedEOFException extends RuntimeException {
public UnExpectedEOFException() {
}
public UnExpectedEOFException(String message) {
super(message);
}
public UnExpectedEOFException(String message, Throwable cause) {
super(message, cause);
}
public UnExpectedEOFException(Throwable cause) {
super(cause);
}
}