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

com.cjy.fat.exception.FatTransactionException Maven / Gradle / Ivy

package com.cjy.fat.exception;

public class FatTransactionException extends RuntimeException{

	private static final long serialVersionUID = 6753994776962949879L;
	

	private String txKey ; 
	
	public FatTransactionException() {
        super();
    }
	
	public FatTransactionException(String message) {
	    super(message);
	}

	public FatTransactionException(String txKey  , String message ) {
		super(message);
		this.txKey = txKey;
	}

	public String getTxKey() {
		return txKey;
	}

	public void setTxKey(String txKey) {
		this.txKey = txKey;
	}
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy