We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/marlonluo2018/outlook-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
exceptions.py•812 B
"""
Exception classes for Outlook session operations.
This module defines custom exceptions used throughout the outlook session package.
"""
class OutlookSessionError(Exception):
"""Base exception for Outlook session related errors."""
pass
class ConnectionError(OutlookSessionError):
"""Raised when Outlook connection fails."""
pass
class FolderNotFoundError(OutlookSessionError):
"""Raised when a specified folder cannot be found."""
pass
class EmailNotFoundError(OutlookSessionError):
"""Raised when a specified email cannot be found."""
pass
class InvalidParameterError(OutlookSessionError):
"""Raised when invalid parameters are provided."""
pass
class OperationFailedError(OutlookSessionError):
"""Raised when an Outlook operation fails."""
pass