com.appland.appmap.record.UnknownEventException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appmap-agent Show documentation
Show all versions of appmap-agent Show documentation
Inspect and record the execution of Java for use with App Land
The newest version!
package com.appland.appmap.record;
/**
* Thrown by the {@link EventRegistry} when an invalid behavior ordinal is accessed.
*/
public class UnknownEventException extends RuntimeException {
public UnknownEventException(String message) {
super(message);
}
}