Source code for pyplanet.contrib.setting.exceptions

"""
Exceptions for Setting Manager.
"""


[docs]class SettingException(Exception): """Abstract setting exception."""
[docs]class SerializationException(SettingException): """Setting value (un)serialization problems"""
[docs]class TypeUnknownException(SettingException): """The type is unknown."""