
com.faunadb.client.errors.TransactionAbortedException Maven / Gradle / Ivy
The newest version!
package com.faunadb.client.errors;
import java.util.List;
public class TransactionAbortedException extends FaunaException {
public TransactionAbortedException(final String message, final int httpStatusCode, final List position) {
super(message, httpStatusCode, position);
}
@Override
public CoreExceptionCodes code() {
return CoreExceptionCodes.TRANSACTION_ABORTED;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy