kerykeion.kr_types.kerykeion_exception
This is part of Kerykeion (C) 2024 Giacomo Battaglia
1# -*- coding: utf-8 -*- 2""" 3 This is part of Kerykeion (C) 2024 Giacomo Battaglia 4""" 5 6 7class KerykeionException(Exception): 8 """ 9 Custom Kerykeion Exception 10 """ 11 12 def __init__(self, message): 13 # Call the base class constructor with the parameters it needs 14 super().__init__(message)
class
KerykeionException(builtins.Exception):
8class KerykeionException(Exception): 9 """ 10 Custom Kerykeion Exception 11 """ 12 13 def __init__(self, message): 14 # Call the base class constructor with the parameters it needs 15 super().__init__(message)
Custom Kerykeion Exception
Inherited Members
- builtins.BaseException
- with_traceback
- args