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