mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2024-11-25 03:35:29 +01:00
24 lines
464 B
Python
24 lines
464 B
Python
"""
|
|
Contains the `Exceptions` used by this library.
|
|
"""
|
|
|
|
|
|
class YggdrasilError(Exception):
|
|
"""
|
|
Base ``Exception`` for the Yggdrasil authentication service.
|
|
"""
|
|
|
|
|
|
class DeserializationError(Exception):
|
|
"""
|
|
``Exception`` raised when something went wrong during the deserialization
|
|
process.
|
|
"""
|
|
|
|
|
|
class SerializationError(Exception):
|
|
"""
|
|
``Exception`` raised when something went wrong during the serialization
|
|
process.
|
|
"""
|