Skip to content

Commit

Permalink
fix: removing bad files
Browse files Browse the repository at this point in the history
  • Loading branch information
jagalindo committed May 31, 2023
1 parent 7bf894c commit 9cd5b0c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions flamapy/core/exceptions.py
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 not shown.
Binary file not shown.

0 comments on commit 9cd5b0c

Please sign in to comment.