forked from EmpireProject/Empire
-
-
Notifications
You must be signed in to change notification settings - Fork 588
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ModuleValidationException, ModuleExecutionException, PluginExecut…
…ionException, module decorators, and deprecate tuple returns (#746) * add module exceptions * add plugin execution exception for feature parity. deprecate returning tuple from plugin for errors * fix tests * add additional tests * update deprecation waring to link to wiki * fix last test
- Loading branch information
Showing
25 changed files
with
673 additions
and
150 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
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
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
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
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
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,2 +1,14 @@ | ||
class PluginValidationException(Exception): | ||
pass | ||
|
||
|
||
class PluginExecutionException(Exception): | ||
pass | ||
|
||
|
||
class ModuleValidationException(Exception): | ||
pass | ||
|
||
|
||
class ModuleExecutionException(Exception): | ||
pass |
Oops, something went wrong.