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

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

There is a newer version: 0.3.5
Show newest version
package net.dongliu.prettypb.runtime.exception;

/**
 * when field is marked as required, but not contained in data
 *
 * @author Dong Liu
 */
public class MissRequiredFieldException extends Exception {

    public MissRequiredFieldException() {
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy