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

org.jboss.as.ee.component.ComponentIsStoppedException Maven / Gradle / Ivy

There is a newer version: 35.0.0.Beta1
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.jboss.as.ee.component;

/**
 * Exception indicating that a component receiving a method call has stopped.
 *
 * @author Richard Achmatowicz
 */
public class ComponentIsStoppedException extends IllegalStateException {

    private static final long serialVersionUID = 1L;

    /**
     * Constructs a ComponentIsStoppedException with no detail message.
     */
    public ComponentIsStoppedException() {
    }

    /**
     * Constructs a ComponentIsStoppedException with the specified
     * detail message.
     *
     * @param message the detail message
     */
    public ComponentIsStoppedException(String message) {
        super(message);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy