Coverage for C: \ Users \ peaco \ OneDrive \ Documents \ GitHub \ mt_metadata \ mt_metadata \ utils \ exceptions.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.1, created at 2026-01-10 00:11 -0800

1# -*- coding: utf-8 -*- 

2""" 

3Created on Thu Dec 24 11:59:18 2020 

4 

5:copyright: 

6 Jared Peacock (jpeacock@usgs.gov) 

7 

8:license: MIT 

9 

10""" 

11 

12 

13# ============================================================================= 

14# Exceptions 

15# ============================================================================= 

16class MTSchemaError(Exception): 

17 pass 

18 

19 

20class MTTimeError(Exception): 

21 pass 

22 

23 

24class MTValidatorError(Exception): 

25 pass