Files
pythonkurs/teil8/myexception.py

10 lines
116 B
Python
Raw Normal View History

2023-03-04 10:48:49 +01:00
from meineexception import MeineException
def func():
raise MeineException('meine eigene Exception')
func()