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

com.rapid7.armor.xact.XactError Maven / Gradle / Ivy

There is a newer version: 0.0.52
Show newest version
package com.rapid7.armor.xact;

public class XactError extends RuntimeException {
  private static final long serialVersionUID = 887665872580865041L;
  private String transaction;
  
  public XactError(String transaction, String message) {
    super(message);
    this.transaction = transaction;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy