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

ch.jalu.injector.exceptions.InjectorException Maven / Gradle / Ivy

There is a newer version: 1.0
Show newest version
package ch.jalu.injector.exceptions;

/**
 * Parent of all injector exceptions.
 */
public class InjectorException extends RuntimeException {

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy