All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.dongliu.prettypb.runtime.exception.UnExpectedEOFException Maven / Gradle / Ivy

There is a newer version: 0.3.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy