All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.avivcarmis.confEager.exceptions.ConfEagerException Maven / Gradle / Ivy

Go to download

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