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

com.lmax.disruptor.spring.boot.exception.EventHandleException Maven / Gradle / Ivy

There is a newer version: 1.0.2.RELEASE
Show newest version
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);
    }
 
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy