org.gridkit.jvmtool.event.ErrorEvent Maven / Gradle / Ivy
package org.gridkit.jvmtool.event;
/**
*
* This is fake event produced if error has accured during
* decoding of event stream.
*
*
* @author Alexey Ragozin ([email protected])
*/
public interface ErrorEvent extends Event {
public String message();
public Exception exception();
}