com.codingapi.springboot.framework.exception.EventLoopException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of springboot-starter Show documentation
Show all versions of springboot-starter Show documentation
springboot-starter project for Spring Boot
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;
}
}