estonlabs.cxtl.common.exception.CxtlEventException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxtl Show documentation
Show all versions of cxtl Show documentation
CXTL – Crypto eXchange Trading Library
package estonlabs.cxtl.common.exception;
import estonlabs.cxtl.common.http.Event;
import lombok.Getter;
@Getter
public class CxtlEventException extends RuntimeException{
private final Event> event;
public CxtlEventException(Throwable cause, Event> event) {
super(event.getRequestInfo(),cause);
this.event = event;
}
}