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

io.smallrye.beanbag.BeanInstantiationException Maven / Gradle / Ivy

The newest version!
package io.smallrye.beanbag;

/**
 * An exception indicating that a required bean failed to be instantiated.
 */
public class BeanInstantiationException extends RuntimeException {
    private static final long serialVersionUID = 8313488012855336482L;

    /**
     * Constructs a new {@code BeanInstantiationException} instance. The message is left blank ({@code null}), and no
     * cause is specified.
     */
    public BeanInstantiationException() {
    }

    /**
     * Constructs a new {@code BeanInstantiationException} instance with an initial message. No
     * cause is specified.
     *
     * @param msg the message
     */
    public BeanInstantiationException(final String msg) {
        super(msg);
    }

    /**
     * Constructs a new {@code BeanInstantiationException} instance with an initial cause. If
     * a non-{@code null} cause is specified, its message is used to initialize the message of this
     * {@code BeanInstantiationException}; otherwise the message is left blank ({@code null}).
     *
     * @param cause the cause
     */
    public BeanInstantiationException(final Throwable cause) {
        super(cause);
    }

    /**
     * Constructs a new {@code BeanInstantiationException} instance with an initial message and cause.
     *
     * @param msg the message
     * @param cause the cause
     */
    public BeanInstantiationException(final String msg, final Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy