Base exception for B+ tree operations.
| 19 | |
| 20 | |
| 21 | class BPlusTreeError(Exception): |
| 22 | """Base exception for B+ tree operations.""" |
| 23 | |
| 24 | pass |
| 25 | |
| 26 | |
| 27 | class InvalidCapacityError(BPlusTreeError): |
nothing calls this directly
no outgoing calls
no test coverage detected