Common: Format with Black

This commit is contained in:
Mike Salvatore 2022-03-30 13:51:26 -04:00
parent 86cc565b65
commit 53d36a7a0c
1 changed files with 11 additions and 11 deletions

View File

@ -1,42 +1,42 @@
class FailedExploitationError(Exception): class FailedExploitationError(Exception):
""" Raise when exploiter fails instead of returning False """ """Raise when exploiter fails instead of returning False"""
class InvalidRegistrationCredentialsError(Exception): class InvalidRegistrationCredentialsError(Exception):
""" Raise when server config file changed and island needs to restart """ """Raise when server config file changed and island needs to restart"""
class AlreadyRegisteredError(Exception): class AlreadyRegisteredError(Exception):
""" Raise to indicate the reason why registration is not required """ """Raise to indicate the reason why registration is not required"""
class UnknownUserError(Exception): class UnknownUserError(Exception):
""" Raise to indicate that authentication failed """ """Raise to indicate that authentication failed"""
class IncorrectCredentialsError(Exception): class IncorrectCredentialsError(Exception):
""" Raise to indicate that authentication failed """ """Raise to indicate that authentication failed"""
class NoInternetError(Exception): class NoInternetError(Exception):
""" Raise to indicate problems caused when no internet connection is present""" """Raise to indicate problems caused when no internet connection is present"""
class UnknownFindingError(Exception): class UnknownFindingError(Exception):
""" Raise when provided finding is of unknown type""" """Raise when provided finding is of unknown type"""
class VersionServerConnectionError(Exception): class VersionServerConnectionError(Exception):
""" Raise to indicate that connection to version update server failed """ """Raise to indicate that connection to version update server failed"""
class FindingWithoutDetailsError(Exception): class FindingWithoutDetailsError(Exception):
""" Raise when pulling events for a finding, but get none """ """Raise when pulling events for a finding, but get none"""
class DomainControllerNameFetchError(FailedExploitationError): class DomainControllerNameFetchError(FailedExploitationError):
""" Raise on failed attempt to extract domain controller's name """ """Raise on failed attempt to extract domain controller's name"""
class InvalidConfigurationError(Exception): class InvalidConfigurationError(Exception):
""" Raise when configuration is invalid """ """Raise when configuration is invalid"""