Coverage for sources / emcdproj / exceptions.py: 80%

15 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-12-08 04:39 +0000

1# vim: set filetype=python fileencoding=utf-8: 

2# -*- coding: utf-8 -*- 

3 

4#============================================================================# 

5# # 

6# Licensed under the Apache License, Version 2.0 (the "License"); # 

7# you may not use this file except in compliance with the License. # 

8# You may obtain a copy of the License at # 

9# # 

10# http://www.apache.org/licenses/LICENSE-2.0 # 

11# # 

12# Unless required by applicable law or agreed to in writing, software # 

13# distributed under the License is distributed on an "AS IS" BASIS, # 

14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # 

15# See the License for the specific language governing permissions and # 

16# limitations under the License. # 

17# # 

18#============================================================================# 

19 

20 

21''' Family of exceptions for package API. ''' 

22 

23 

24from . import __ 

25 

26 

27class Omniexception( __.immut.exceptions.Omniexception ): 

28 ''' Base for all exceptions raised by package API. ''' 

29 

30 

31class Omnierror( Omniexception, Exception ): 

32 ''' Base for error exceptions raised by package API. ''' 

33 

34 

35class DataAwol( Omnierror, AssertionError ): 

36 ''' Unexpected data absence. ''' 

37 

38 def __init__( self, source: str, label: str ): 

39 super( ).__init__( 

40 f"Necessary data with label '{label}' is missing from {source}." ) 

41 

42 

43class FileDataAwol( DataAwol ): 

44 ''' Unexpected data absence from file. ''' 

45 

46 def __init__( self, file: str | __.Path, label: str ): 

47 super( ).__init__( source = f"file '{file}'", label = label ) 

48 

49 

50class FileAwol( Omnierror, AssertionError ): 

51 ''' Unexpected file absence. ''' 

52 

53 def __init__( self, file: str | __.Path ): 

54 super( ).__init__( f"Necessary file is missing at '{file}'." ) 

55 

56 

57class FileEmpty( Omnierror, AssertionError ): 

58 ''' Unexpectedly empty file. ''' 

59 

60 def __init__( self, file: str| __.Path ): 

61 super( ).__init__( f"Unexpectedly empty file at '{file}'." )