-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,27 @@ | ||
class PluginNotFound(Exception): | ||
class FlamaException(Exception): | ||
pass | ||
|
||
class PluginNotFound(FlamaException): | ||
pass | ||
|
||
|
||
class OperationNotFound(Exception): | ||
class OperationNotFound(FlamaException): | ||
pass | ||
|
||
|
||
class TransformationNotFound(Exception): | ||
class TransformationNotFound(FlamaException): | ||
pass | ||
|
||
|
||
class ElementNotFound(Exception): | ||
class ElementNotFound(FlamaException): | ||
pass | ||
|
||
|
||
class DuplicatedFeature(Exception): | ||
class DuplicatedFeature(FlamaException): | ||
pass | ||
|
||
|
||
class ConfigurationNotFound(Exception): | ||
class ConfigurationNotFound(FlamaException): | ||
pass | ||
|
||
|
Binary file removed
BIN
-264 Bytes
flamapy/metamodels/configuration_metamodel/models/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file removed
BIN
-1.65 KB
flamapy/metamodels/configuration_metamodel/models/__pycache__/configuration.cpython-39.pyc
Binary file not shown.