2018-06-12 07:34:33 +00:00
|
|
|
'''
|
|
|
|
Onionr - P2P Microblogging Platform & Social 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/>.
|
|
|
|
'''
|
|
|
|
|
2018-06-14 04:17:58 +00:00
|
|
|
# general exceptions
|
|
|
|
class NotFound(Exception):
|
|
|
|
pass
|
|
|
|
class Unknown(Exception):
|
|
|
|
pass
|
|
|
|
class Invalid(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-06-20 07:40:49 +00:00
|
|
|
# crypto exceptions
|
|
|
|
class InvalidPubkey(Exception):
|
|
|
|
pass
|
|
|
|
|
2018-06-19 07:01:59 +00:00
|
|
|
# block exceptions
|
|
|
|
class InvalidMetadata(Exception):
|
|
|
|
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
|
|
|
|
class InvalidAddress(Exception):
|
2018-06-14 04:17:58 +00:00
|
|
|
pass
|