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

org.nakedobjects.metamodel.commons.factory.UnavailableClassException Maven / Gradle / Ivy

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

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


public class UnavailableClassException extends NakedObjectException {
    private static final long serialVersionUID = 1L;

    public UnavailableClassException() {
        super();
    }

    public UnavailableClassException(final String s) {
        super(s);
    }

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy