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

ru.tinkoff.kora.resilient.ResilientException Maven / Gradle / Ivy

The newest version!
package ru.tinkoff.kora.resilient;

public class ResilientException extends RuntimeException {

    private final String name;

    public ResilientException(String name, String message) {
        super(message);
        this.name = name;
    }

    public ResilientException(String name, Throwable cause) {
        super(cause);
        this.name = name;
    }

    public String name() {
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy