com.lmax.disruptor.spring.boot.exception.EventHandleException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-boot-starter-disruptor Show documentation
Show all versions of spring-boot-starter-disruptor Show documentation
Spring Boot Starter For Disruptor
package com.lmax.disruptor.spring.boot.exception;
@SuppressWarnings("serial")
public class EventHandleException extends RuntimeException {
public EventHandleException(Exception e) {
super(e.getMessage(), null);
}
public EventHandleException(String errorMessage) {
super(errorMessage, null);
}
public EventHandleException(String errorMessage, Throwable cause) {
super(errorMessage, cause);
}
}