org.xipki.scep.transaction.TransactionException Maven / Gradle / Ivy
// Copyright (c) 2013-2023 xipki. All rights reserved.
// License Apache License 2.0
package org.xipki.scep.transaction;
/**
* Exception during the transaction.
*
* @author Lijun Liao (xipki)
*/
public class TransactionException extends Exception {
public TransactionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
public TransactionException(String message, Throwable cause) {
super(message, cause);
}
public TransactionException(String message) {
super(message);
}
public TransactionException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy