All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.appland.appmap.output.v1.NoSourceAvailableException Maven / Gradle / Ivy

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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy