Skip to main content
Glama
exceptions.py1.24 kB
# -------------------------------------------------------------------------------------- # Copyright (c) 2023-2024, Nucleic Development Team. # # Distributed under the terms of the Modified BSD License. # # The full license is in the file LICENSE, distributed with this software. # -------------------------------------------------------------------------------------- """Kiwi exceptions. Imported by the kiwisolver C extension. """ class BadRequiredStrength(Exception): pass class DuplicateConstraint(Exception): __slots__ = ("constraint",) def __init__(self, constraint): self.constraint = constraint class DuplicateEditVariable(Exception): __slots__ = ("edit_variable",) def __init__(self, edit_variable): self.edit_variable = edit_variable class UnknownConstraint(Exception): __slots__ = ("constraint",) def __init__(self, constraint): self.constraint = constraint class UnknownEditVariable(Exception): __slots__ = ("edit_variable",) def __init__(self, edit_variable): self.edit_variable = edit_variable class UnsatisfiableConstraint(Exception): __slots__ = ("constraint",) def __init__(self, constraint): self.constraint = constraint

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Lillard01/chatExcel-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server