public ExecuteException()

in src/main/java/software/amazon/qldb/exceptions/ExecuteException.java [27:37]


    public ExecuteException(RuntimeException cause,
                            boolean isRetryable,
                            boolean isSessionAlive,
                            boolean isInvalidSessionException,
                            String transactionId) {
        super(cause);
        this.isRetryable = isRetryable;
        this.isSessionAlive = isSessionAlive;
        this.isInvalidSessionException = isInvalidSessionException;
        this.transactionId = transactionId;
    }