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

com.codingapi.springboot.framework.exception.EventLoopException Maven / Gradle / Ivy

The newest version!
package com.codingapi.springboot.framework.exception;

import com.codingapi.springboot.framework.event.IEvent;
import lombok.Getter;

import java.util.List;

@Getter
public class EventLoopException extends RuntimeException {

    private final List> stack;

    public EventLoopException(List> stack, IEvent event) {
        super("event loop error current event class:" + event.getClass() + ", history event stack:" + stack);
        this.stack = stack;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy