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

dev.soffa.foundation.error.FakeException Maven / Gradle / Ivy

There is a newer version: 0.17.31
Show newest version
package dev.soffa.foundation.error;

import dev.soffa.foundation.commons.TextUtil;

public class FakeException extends RuntimeException implements ManagedException {

    private static final long serialVersionUID = 1L;

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

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

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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy