2018-06-12 07:34:33 +00:00
|
|
|
'''
|
2018-11-11 02:10:58 +00:00
|
|
|
Onionr - P2P Anonymous Storage Network
|
2018-06-12 07:34:33 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
'''
|
|
|
|
|
2018-06-14 04:17:58 +00:00
|
|
|
# general exceptions
|
|
|
|
class NotFound(Exception):
|
|
|
|
pass
|
|
|
|
class Unknown(Exception):
|
|
|
|
pass
|
|
|
|
class Invalid(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-07-09 07:02:33 +00:00
|
|
|
# communicator exceptions
|
|
|
|
class OnlinePeerNeeded(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-06-20 07:40:49 +00:00
|
|
|
# crypto exceptions
|
|
|
|
class InvalidPubkey(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-11-11 02:10:58 +00:00
|
|
|
class KeyNotKnown(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class DecryptionError(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-12-09 17:29:39 +00:00
|
|
|
class PasswordStrengthError(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-06-19 07:01:59 +00:00
|
|
|
# block exceptions
|
2019-02-17 05:20:47 +00:00
|
|
|
|
2019-02-26 04:19:37 +00:00
|
|
|
class ReplayAttack(Exception):
|
|
|
|
pass
|
|
|
|
|
2019-02-17 05:20:47 +00:00
|
|
|
class DifficultyTooLarge(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-06-19 07:01:59 +00:00
|
|
|
class InvalidMetadata(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-08-13 03:48:33 +00:00
|
|
|
class BlacklistedBlock(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-08-16 05:01:40 +00:00
|
|
|
class DataExists(Exception):
|
|
|
|
pass
|
|
|
|
|
2019-01-28 06:06:20 +00:00
|
|
|
class NoDataAvailable(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-07-11 19:45:38 +00:00
|
|
|
class InvalidHexHash(Exception):
|
|
|
|
'''When a string is not a valid hex string of appropriate length for a hash value'''
|
|
|
|
pass
|
|
|
|
|
2018-07-23 07:43:10 +00:00
|
|
|
class InvalidProof(Exception):
|
|
|
|
'''When a proof is invalid or inadequate'''
|
|
|
|
pass
|
|
|
|
|
2018-06-14 04:17:58 +00:00
|
|
|
# network level exceptions
|
2018-06-12 07:34:33 +00:00
|
|
|
class MissingPort(Exception):
|
2018-06-13 22:22:48 +00:00
|
|
|
pass
|
2018-07-31 04:41:32 +00:00
|
|
|
|
2018-06-13 22:22:48 +00:00
|
|
|
class InvalidAddress(Exception):
|
2018-06-14 04:17:58 +00:00
|
|
|
pass
|
2018-08-23 04:59:41 +00:00
|
|
|
|
2018-11-11 02:10:58 +00:00
|
|
|
class InvalidAPIVersion(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-08-23 04:59:41 +00:00
|
|
|
# file exceptions
|
|
|
|
|
2018-08-23 17:48:49 +00:00
|
|
|
class DiskAllocationReached(Exception):
|
2018-11-11 02:10:58 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
# onionrsocket exceptions
|
|
|
|
|
|
|
|
class MissingAddress(Exception):
|
2019-02-17 18:20:10 +00:00
|
|
|
pass
|
|
|
|
|
|
|
|
# Contact exceptions
|
|
|
|
|
|
|
|
class ContactDeleted(Exception):
|
2018-08-23 04:59:41 +00:00
|
|
|
pass
|