Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pyVHDLModel/Exception.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
message in english, each exception object contains one or multiple references to the exception's context.
"""
from pyTooling.Decorators import export, readonly
from pyTooling.Exceptions import ExceptionBase
from pyTooling.Warning import Warning, CriticalWarning

from pyVHDLModel.Symbol import Symbol
Expand Down Expand Up @@ -93,7 +94,7 @@ class BlackboxWarning(VHDLModelCriticalWarning):


@export
class VHDLModelException(Exception):
class VHDLModelException(ExceptionBase):
"""
Base-class for all exceptions (errors) raised by pyVHDLModel.

Expand Down
Loading