From b8d4e2582817518f3d22276e87a75eb177297288 Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Sun, 22 Dec 2024 22:14:38 -0500 Subject: [PATCH] add ObjectModelNotSupportedException --- .../src/editor/core/ObjectModelNotSupportedException.py | 2 ++ editor-python/src/editor/core/__init__.py | 1 + 2 files changed, 3 insertions(+) create mode 100644 editor-python/src/editor/core/ObjectModelNotSupportedException.py diff --git a/editor-python/src/editor/core/ObjectModelNotSupportedException.py b/editor-python/src/editor/core/ObjectModelNotSupportedException.py new file mode 100644 index 0000000..dfbdd95 --- /dev/null +++ b/editor-python/src/editor/core/ObjectModelNotSupportedException.py @@ -0,0 +1,2 @@ +class ObjectModelNotSupportedException (Exception): + pass diff --git a/editor-python/src/editor/core/__init__.py b/editor-python/src/editor/core/__init__.py index ec2f14e..3223e0d 100644 --- a/editor-python/src/editor/core/__init__.py +++ b/editor-python/src/editor/core/__init__.py @@ -1,3 +1,4 @@ from .DataFormat import DataFormat from .ObjectModel import ObjectModel from .InvalidDataFormatException import InvalidDataFormatException +from .ObjectModelNotSupportedException import ObjectModelNotSupportedException