io.github.avivcarmis.confEager.exceptions.ConfEagerException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of conf-eager Show documentation
Show all versions of conf-eager Show documentation
Super simplistic and dynamic eager-initialization configuration library for Java.
The newest version!
package io.github.avivcarmis.confEager.exceptions;
public class ConfEagerException extends RuntimeException {
public ConfEagerException() {}
public ConfEagerException(String message) {
super(message);
}
public ConfEagerException(String message, Throwable cause) {
super(message, cause);
}
public ConfEagerException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy