From 511a8cf6b90d0a813ac2c841f48d1fc7ee00d264 Mon Sep 17 00:00:00 2001 From: tligui_y Date: Tue, 12 Aug 2025 16:17:24 +0200 Subject: [PATCH] Delete slic/utils/logbook_exceptions.py --- slic/utils/logbook_exceptions.py | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 slic/utils/logbook_exceptions.py diff --git a/slic/utils/logbook_exceptions.py b/slic/utils/logbook_exceptions.py deleted file mode 100644 index e0d43f26..00000000 --- a/slic/utils/logbook_exceptions.py +++ /dev/null @@ -1,30 +0,0 @@ -class LogbookError(Exception): - """ Parent logbook exception.""" - pass - - -class LogbookAuthenticationError(LogbookError): - """ Raise when problem with username and password.""" - pass - -class LogbookServerTimeout(LogbookError): - """ Raise when the request to the logbook server timeouts. """ - -class LogbookServerProblem(LogbookError): - """ Raise when problem accessing logbook server.""" - pass - - -class LogbookMessageRejected(LogbookError): - """ Raised when manipulating/creating message was rejected by the server or there was problem composing message.""" - pass - - -class LogbookInvalidMessageID(LogbookMessageRejected): - """ Raised when there is no message with specified ID on the server.""" - pass - - -class LogbookInvalidAttachmentType(LogbookMessageRejected): - """ Raised when passed attachment has invalid type.""" - pass \ No newline at end of file