We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57e2683 commit 1024ba9Copy full SHA for 1024ba9
docs/InMemoryTokenSelection.md
@@ -202,3 +202,9 @@ abstract class SdxTokenReleaseFlow<out T> : FlowLogic<T>() {
202
203
}
204
```
205
+
206
+### Exception Handling
207
208
+There is a new exception in LTS. Previously if there were not enough tokens we used to throw an `IllegalStateException`, and indeed we still
209
+do throw this in certain circumstances. But if you do not have enough tokens we now throw an `InsufficientBalanceException` so that you can
210
+pick this out explicitly. NB you may need to catch both `IllegalStateException` and `InsufficientBalanceException` now.
0 commit comments