82 lines
1.8 KiB
Python
82 lines
1.8 KiB
Python
'''
|
|
Onionr - P2P Anonymous Storage Network
|
|
|
|
This file contains exceptions for onionr
|
|
'''
|
|
'''
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
'''
|
|
|
|
# general exceptions
|
|
class NotFound(Exception):
|
|
pass
|
|
class Unknown(Exception):
|
|
pass
|
|
class Invalid(Exception):
|
|
pass
|
|
|
|
# communicator exceptions
|
|
class OnlinePeerNeeded(Exception):
|
|
pass
|
|
|
|
# crypto exceptions
|
|
class InvalidPubkey(Exception):
|
|
pass
|
|
|
|
class KeyNotKnown(Exception):
|
|
pass
|
|
|
|
class DecryptionError(Exception):
|
|
pass
|
|
|
|
class PasswordStrengthError(Exception):
|
|
pass
|
|
|
|
# block exceptions
|
|
class InvalidMetadata(Exception):
|
|
pass
|
|
|
|
class BlacklistedBlock(Exception):
|
|
pass
|
|
|
|
class DataExists(Exception):
|
|
pass
|
|
|
|
class InvalidHexHash(Exception):
|
|
'''When a string is not a valid hex string of appropriate length for a hash value'''
|
|
pass
|
|
|
|
class InvalidProof(Exception):
|
|
'''When a proof is invalid or inadequate'''
|
|
pass
|
|
|
|
# network level exceptions
|
|
class MissingPort(Exception):
|
|
pass
|
|
|
|
class InvalidAddress(Exception):
|
|
pass
|
|
|
|
class InvalidAPIVersion(Exception):
|
|
pass
|
|
|
|
# file exceptions
|
|
|
|
class DiskAllocationReached(Exception):
|
|
pass
|
|
|
|
# onionrsocket exceptions
|
|
|
|
class MissingAddress(Exception):
|
|
pass |