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

org.nakedobjects.metamodel.adapter.InvalidEntryException Maven / Gradle / Ivy

The newest version!
package org.nakedobjects.metamodel.adapter;

import org.nakedobjects.metamodel.commons.exceptions.NakedObjectApplicationException;


/**
 * Indicates that a value entry is not valid. Note the entry may still parse correctly, but is does fulfil
 * other other entry requirements.
 */
public class InvalidEntryException extends NakedObjectApplicationException {
    private static final long serialVersionUID = 1L;

    public InvalidEntryException(final String message) {
        super(message);
    }

    public InvalidEntryException(final Throwable cause) {
        this("Invalid value", cause);
    }

    public InvalidEntryException(final String message, final Throwable cause) {
        super(message, cause);
    }
}
// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy