-
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.
Merge pull request #7 from gpetretto/develop
split io and manager
- Loading branch information
Showing
14 changed files
with
1,996 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
class QTKException(Exception): | ||
""" | ||
Base class for all the exceptions generated by qtoolkit. | ||
""" | ||
|
||
|
||
class CommandFailedError(QTKException): | ||
""" | ||
Exception raised when the execution of a command has failed, | ||
typically by a non-zero return code. | ||
""" | ||
|
||
|
||
class OutputParsingError(QTKException): | ||
""" | ||
Exception raised when errors are recognized during the parsing | ||
of the outputs of command. | ||
""" | ||
|
||
|
||
class UnsupportedResourcesError(QTKException): | ||
""" | ||
Exception raised when the resources requested are not supported | ||
in qtoolkit for the chosen scheduler. | ||
""" |
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
Oops, something went wrong.