com.appland.appmap.record.ActiveSessionException 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
package com.appland.appmap.record;
/**
* This exception is used when a conflict or error occurs in regard to an active recording session.
*/
public class ActiveSessionException extends RuntimeException {
public ActiveSessionException(String message) {
super(message);
}
public ActiveSessionException(String message, Throwable cause) {
super(message, cause);
}
}