com.jquicker.exception.InjectionException Maven / Gradle / Ivy
package com.jquicker.exception;
public class InjectionException extends JQuickerException {
private static final long serialVersionUID = -3578455146935893919L;
public InjectionException() {
super();
}
public InjectionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public InjectionException(String message, Throwable cause) {
super(message, cause);
}
public InjectionException(String message) {
super(message);
}
public InjectionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy