org.fiolino.common.ioc.NoSuchBeanException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons Show documentation
Show all versions of commons Show documentation
General structure to easily create dynamic logic via MethodHandles and others.
package org.fiolino.common.ioc;
/**
* Created by kuli on 24.03.15.
*/
public class NoSuchBeanException extends RuntimeException {
public NoSuchBeanException() {
}
public NoSuchBeanException(String message) {
super(message);
}
public NoSuchBeanException(String message, Throwable cause) {
super(message, cause);
}
public NoSuchBeanException(Throwable cause) {
super(cause);
}
}