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

com.google.inject.OutOfScopeException Maven / Gradle / Ivy

package com.google.inject;

/**
 * Thrown from {@link Provider#get} when an attempt is made to access a scoped object while the
 * scope in question is not currently active.
 *
 */
@SuppressWarnings("serial")
public final class OutOfScopeException extends RuntimeException {

    public OutOfScopeException(String message) {
        super(message);
    }

    public OutOfScopeException(String message, Throwable cause) {
        super(message, cause);
    }

    public OutOfScopeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy