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

org.raystack.depot.exception.ConfigurationException Maven / Gradle / Ivy

The newest version!
package org.raystack.depot.exception;

public class ConfigurationException extends RuntimeException {
    public ConfigurationException(String message) {
        super(message);
    }

    public ConfigurationException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy