10 lines
116 B
Python
10 lines
116 B
Python
|
|
from meineexception import MeineException
|
||
|
|
|
||
|
|
def func():
|
||
|
|
raise MeineException('meine eigene Exception')
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
func()
|
||
|
|
|