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

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

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

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


/**
 * Indicates that a request to resolve an object has failed. Unresolved objects should never be used as they
 * will cause further errors.
 */
public class ResolveException extends NakedObjectException {
    private static final long serialVersionUID = 1L;

    public ResolveException() {
        super();
    }

    public ResolveException(final String msg, final Throwable cause) {
        super(msg, cause);
    }

    public ResolveException(final String msg) {
        super(msg);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy