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

org.nakedobjects.plugins.remoting.shared.NakedObjectsRemoteException Maven / Gradle / Ivy

package org.nakedobjects.plugins.remoting.shared;

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


/**
 * Denotes an exception that occurred on the server.
 */
public class NakedObjectsRemoteException extends NakedObjectException {
    private static final long serialVersionUID = 1L;

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

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

    public NakedObjectsRemoteException(final Throwable cause) {
        super(cause);
    }
}
// Copyright (c) Naked Objects Group Ltd.




© 2015 - 2025 Weber Informatics LLC | Privacy Policy