com.appland.appmap.transform.annotations.HookValidationException 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.transform.annotations;
/**
* This exception is thrown when a behavior has failed to meet the requirements of a hook.
*/
public class HookValidationException extends RuntimeException {
public HookValidationException(String message) {
super(message);
}
}