org.fiolino.common.ioc.InstantiationException 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 09.12.15.
*/
public class InstantiationException extends RuntimeException {
public InstantiationException() {
}
public InstantiationException(String message) {
super(message);
}
public InstantiationException(String message, Throwable cause) {
super(message, cause);
}
public InstantiationException(Throwable cause) {
super(cause);
}
}