We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46f7a29 commit 3d4bf6fCopy full SHA for 3d4bf6f
pyVHDLModel/Exception.py
@@ -36,8 +36,29 @@
36
message in english, each exception object contains one or multiple references to the exception's context.
37
"""
38
from pyTooling.Decorators import export, readonly
39
+from pyTooling.Warning import Warning, CriticalWarning
40
-from pyVHDLModel.Symbol import Symbol
41
+from pyVHDLModel.Symbol import Symbol
42
+
43
44
+@export
45
+class VHDLModelWarning(Warning):
46
+ pass
47
48
49
50
+class NotImplementedWarning(VHDLModelWarning):
51
52
53
54
55
+class VHDLModelCriticalWarning(Warning):
56
57
58
59
60
+class BlackboxWarning(VHDLModelCriticalWarning):
61
62
63
64
@export
0 commit comments