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

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

The newest version!
package net.dongliu.prettypb.runtime.exception;

/**
 * the bean's value is not valid for proto
 *
 * @author Dong Liu
 */
public class IllegalDataException extends Exception {

    public IllegalDataException() {
    }

    public IllegalDataException(String message) {
        super(message);
    }

    public IllegalDataException(String message, Throwable cause) {
        super(message, cause);
    }

    public IllegalDataException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy