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
« 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
5:copyright:
6 Jared Peacock (jpeacock@usgs.gov)
8:license: MIT
10"""
13# =============================================================================
14# Exceptions
15# =============================================================================
16class MTSchemaError(Exception):
17 pass
20class MTTimeError(Exception):
21 pass
24class MTValidatorError(Exception):
25 pass