org.gridkit.jvmtool.event.SimpleErrorEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjk-stacktrace Show documentation
Show all versions of sjk-stacktrace Show documentation
Thread dumps: capture and encoding
package org.gridkit.jvmtool.event;
public class SimpleErrorEvent implements ErrorEvent {
private final Exception error;
public SimpleErrorEvent(Exception e) {
this.error = e;
}
@Override
public String message() {
return error.getMessage();
}
@Override
public Exception exception() {
return error;
}
}