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

org.jboss.as.ejb3.component.EJBComponentUnavailableException Maven / Gradle / Ivy

There is a newer version: 33.0.2.Final
Show newest version
package org.jboss.as.ejb3.component;

import javax.ejb.EJBException;

/**
 * An exception which can be used to indicate that a particular EJB component is (no longer) available for handling invocations. This typically is thrown when an EJB is invoked
 * after the EJB component has been marked for shutdown.
 *
 * @author: Jaikiran Pai
 */
public class EJBComponentUnavailableException extends EJBException {

    public EJBComponentUnavailableException() {

    }

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

    public EJBComponentUnavailableException(final String msg, final Exception e) {
        super(msg, e);
    }

    public EJBComponentUnavailableException(final Exception e) {
        super(e);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy