Coverage for sources/ictruck/exceptions.py: 100%

17 statements  

« prev     ^ index     » next       coverage.py v7.9.2, created at 2025-07-05 05:21 +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( 

28 __.immut.Object, BaseException, 

29 instances_visibles = ( 

30 '__cause__', '__context__', __.immut.is_public_identifier ), 

31): 

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

33 

34 

35class Omnierror( Omniexception, Exception ): 

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

37 

38 

39class ArgumentClassInvalidity( Omnierror, TypeError ): 

40 ''' Argument class is invalid. ''' 

41 

42 def __init__( self, name: str, classes: type | tuple[ type, ... ] ): 

43 if isinstance( classes, type ): classes = ( classes, ) 

44 cnames = ' | '.join( map( 

45 lambda cls: f"{cls.__module__}.{cls.__qualname__}", classes ) ) 

46 super( ).__init__( 

47 f"Argument {name!r} must be an instance of {cnames}." ) 

48 

49 

50class AttributeNondisplacement( Omnierror, AttributeError ): 

51 ''' Cannot displace existing attribute. ''' 

52 

53 def __init__( self, object_: __.typx.Any, name: str ): 

54 super( ).__init__( 

55 f"Cannot displace attribute {name!r} on: {object_}" ) 

56 

57 

58class FlavorInavailability( Omnierror, ValueError ): 

59 ''' Requested flavor is not available. ''' 

60 

61 def __init__( self, flavor: int | str ): 

62 super( ).__init__( f"Flavor {flavor!r} is not available." ) 

63 

64 

65class ModuleInferenceFailure( Omnierror, RuntimeError ): 

66 ''' Failure to infer invoking module from call stack. ''' 

67 

68 def __init__( self ): 

69 super( ).__init__( "Could not infer invoking module from call stack." )