org.fiolino.common.reflection.NoMatchingConverterException 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.reflection;
/**
* Created by Kuli on 6/20/2016.
*/
public class NoMatchingConverterException extends RuntimeException {
private static final long serialVersionUID = -6050857567215258754L;
public NoMatchingConverterException() {
}
public NoMatchingConverterException(String message) {
super(message);
}
public NoMatchingConverterException(String message, Throwable cause) {
super(message, cause);
}
public NoMatchingConverterException(Throwable cause) {
super(cause);
}
}