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

org.nakedobjects.metamodel.exceptions.ModelException Maven / Gradle / Ivy

There is a newer version: 4.0-beta-1
Show newest version
package org.nakedobjects.metamodel.exceptions;

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

/**
 * Thrown when a problem is found with the domain model, and Naked Objects cannot proceed.
 */
public class ModelException extends NakedObjectException {
    private static final long serialVersionUID = 1L;

    public ModelException() {
        super();
    }

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

    public ModelException(final Throwable cause) {
        super(cause);
    }

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

}
// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy