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

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

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

import io.soffa.foundation.commons.TextUtil;

public class TechnicalException extends RuntimeException implements ManagedException {

    private static final long serialVersionUID = 1L;

    public TechnicalException(String message, Object... args) {
        super(TextUtil.format(message, args));
    }

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

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

    public TechnicalException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy