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

javax.jmi.reflect.InvalidObjectException Maven / Gradle / Ivy

There is a newer version: 2.18.10
Show newest version
package javax.jmi.reflect;

/** Exception thrown when an object operation detects
 * a non-existing (i.e. deleted) object.
 */
@SuppressWarnings("serial")
public class InvalidObjectException extends JmiException {
    
    /**
     * Constructs an InvalidObjectException without detail message.
     * @elementInError element in error.
     */
    public InvalidObjectException(RefObject elementInError) {
        super(elementInError);
    }

    /**
     * Constructs an InvalidObjectException with the specified detail message.
     * @elementInError element in error.
     * @param msg the detail message.
     */
    public InvalidObjectException(RefObject elementInError, String msg) {
        super(elementInError, msg);
    }
}






© 2015 - 2024 Weber Informatics LLC | Privacy Policy