paxel.lintstone.impl.FailedMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lintstone-java8 Show documentation
Show all versions of lintstone-java8 Show documentation
Lightweight Actor Framework
The newest version!
package paxel.lintstone.impl;
import lombok.AllArgsConstructor;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import paxel.lintstone.api.LintStoneFailedMessage;
@ToString
@Getter
@AllArgsConstructor
@EqualsAndHashCode
public class FailedMessage implements LintStoneFailedMessage {
private final Object message;
private final Throwable cause;
private final String actorName;
}