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

org.osgl.inject.InjectException Maven / Gradle / Ivy

There is a newer version: 1.13.2
Show newest version
package org.osgl.inject;

import org.osgl.exception.UnexpectedException;

/**
 * `InjectException` is thrown out when error occurred within
 * dependency injection process
 */
public class InjectException extends UnexpectedException {

    public InjectException(String message, Object... args) {
        super(message, args);
    }

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

    public InjectException(Throwable cause, String message, Object... args) {
        super(cause, message, args);
    }

    public static InjectException circularDependency(CharSequence dependencyChain) {
        return new InjectException("Circular dependency found: %s", dependencyChain);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy