Source code for glados.errors

[docs]class GladosError(Exception): """Base class for Client errors""" pass
[docs]class GladosBotNotFoundError(GladosError): """Error raised when GladosBot is not found"""
[docs]class GladosRouteNotFoundError(GladosError): """Error raised when the requested path is not found""" pass
[docs]class GladosPathExistsError(GladosError): """Error raised when trying to add a path that already exists""" pass