Coverage for /usr/local/lib/python3.11/dist-packages/pyrocko/gf/error.py: 100%

4 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2024-01-04 09:19 +0000

1# http://pyrocko.org - GPLv3 

2# 

3# The Pyrocko Developers, 21st Century 

4# ---|P------/S----------~Lg---------- 

5 

6''' 

7Exception definitions. 

8''' 

9 

10 

11class StoreError(Exception): 

12 ''' 

13 Raised for errors occurring in the Pyrocko GF framework. 

14 ''' 

15 pass 

16 

17 

18__all__ = ''' 

19StoreError 

20'''.split()