Skip to content

Commit

Permalink
[Transaction] Delete TransactionTimeoutException (#14022)
Browse files Browse the repository at this point in the history
### Motivation & Modification
Remove unnecessary exceptions.
  • Loading branch information
liangyepianzhou committed Jan 29, 2022
1 parent 949fe74 commit 823bcd6
Showing 1 changed file with 0 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,21 +98,6 @@ public MetaStoreHandlerNotExistsException(String message) {
}
}


/**
* Thrown when transaction meta was timeout.
*/
public static class TransactionTimeotException extends TransactionCoordinatorClientException {

public TransactionTimeotException(Throwable t) {
super(t);
}

public TransactionTimeotException(String transactionId) {
super("The transaction " + transactionId + " is timeout.");
}
}

/**
* Thrown when send request to transaction meta store but the transaction meta store handler not ready.
*/
Expand Down

0 comments on commit 823bcd6

Please sign in to comment.