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

net.dongliu.prettypb.runtime.exception.ProtoSerializeException 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 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