com.appland.appmap.output.v1.NoSourceAvailableException 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.output.v1;
/**
* Thrown when trying to access information from the source code which does not exist. For example,
* this event could be thrown if a methods parameter identifiers are not be available.
*/
public class NoSourceAvailableException extends RuntimeException {
public NoSourceAvailableException() {
super();
}
public NoSourceAvailableException(String msg) {
super(msg);
}
}