com.rollbar.notifier.sender.exception.SenderException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rollbar-java Show documentation
Show all versions of rollbar-java Show documentation
For connecting your applications built on the JVM to Rollbar for Error Reporting
package com.rollbar.notifier.sender.exception;
import com.rollbar.notifier.sender.Sender;
/**
* Exception to indicate that there was a problem related in the {@link Sender sender}.
*/
public class SenderException extends RuntimeException {
public SenderException(Exception e) {
super(e);
}
public SenderException(Throwable e) {
super(e);
}
}