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

org.xillium.data.validation.EmptyDataObjectException Maven / Gradle / Ivy

There is a newer version: 1.2.2
Show newest version
package org.xillium.data.validation;


/**
 * Data validation exception: the whole data object is empty.
 */
public class EmptyDataObjectException extends MissingParameterException {
    public EmptyDataObjectException(String message) {
        super("", message);
    }

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

    private static final long serialVersionUID = 4318641522545221014L;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy