kz.greetgo.conf.hot.ConvertingError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.conf Show documentation
Show all versions of greetgo.conf Show documentation
Configuration library using in greetgo!
package kz.greetgo.conf.hot;
import java.lang.reflect.Method;
public abstract class ConvertingError extends HasConfigInterfaceAndMethod {
protected ConvertingError(String message, Throwable cause, Class> configInterface, Method method) {
super(message, cause, configInterface, method);
}
protected ConvertingError(String message) {
super(message);
}
public ConvertingError(String message, Throwable cause) {
super(message, cause);
}
}