ru.tinkoff.kora.resilient.ResilientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of resilient-kora Show documentation
Show all versions of resilient-kora Show documentation
Kora resilient-kora module
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;
}
}