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

io.soffa.foundation.errors.ConfigurationException Maven / Gradle / Ivy

The newest version!
package io.soffa.foundation.errors;

import io.soffa.foundation.commons.TextUtil;

public class ConfigurationException extends RuntimeException implements ManagedException {

    private static final long serialVersionUID = 1L;

    public ConfigurationException(String message, Object... args) {
        this(null, message, args);
    }

    public ConfigurationException(Throwable cause, String message, Object... args) {
        super(TextUtil.format(message, args), cause);
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy