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

com.appland.appmap.record.ActiveSessionException Maven / Gradle / Ivy

There is a newer version: 1.27.1
Show newest version
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy