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

datadog.appsec.api.blocking.BlockingException Maven / Gradle / Ivy

There is a newer version: 1.42.2
Show newest version
package datadog.appsec.api.blocking;

public class BlockingException extends RuntimeException {
  public BlockingException() {}

  public BlockingException(String message) {
    super(message);
  }

  public BlockingException(String message, Throwable cause) {
    super(message, cause);
  }

  public BlockingException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy