-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
issue #57: fix lint error and rework exception structure
- Loading branch information
Maxence Guindon
committed
Apr 10, 2024
1 parent
b6d9bdb
commit 6478ad9
Showing
9 changed files
with
124 additions
and
139 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 |
---|---|---|
@@ -1,73 +1,10 @@ | ||
class DeleteDirectoryRequestError(Exception): | ||
pass | ||
|
||
|
||
class ListDirectoriesRequestError(Exception): | ||
pass | ||
|
||
|
||
class InferenceRequestError(Exception): | ||
pass | ||
|
||
|
||
class CreateDirectoryRequestError(Exception): | ||
pass | ||
|
||
|
||
class GenerateHashError(Exception): | ||
pass | ||
|
||
|
||
class MountContainerError(Exception): | ||
pass | ||
|
||
|
||
class ContainerNameError(Exception): | ||
pass | ||
|
||
|
||
class CreateDirectoryError(Exception): | ||
pass | ||
|
||
|
||
class ConnectionStringError(Exception): | ||
pass | ||
|
||
|
||
class GetBlobError(Exception): | ||
pass | ||
|
||
|
||
class UploadImageError(Exception): | ||
pass | ||
|
||
|
||
class UploadInferenceResultError(Exception): | ||
pass | ||
|
||
|
||
class GetFolderUUIDError(Exception): | ||
pass | ||
|
||
|
||
class FolderListError(Exception): | ||
pass | ||
|
||
|
||
class ProcessInferenceResultError(Exception): | ||
pass | ||
|
||
|
||
class ValidateEnvVariablesError(Exception): | ||
pass | ||
|
||
|
||
class ServerError(Exception): | ||
pass | ||
|
||
|
||
class ImageValidationError(Exception): | ||
pass | ||
|
||
class PipelineNotFoundError(Exception): | ||
pass |
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
Oops, something went wrong.