Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
Error resources for Microsoft Agents Activity package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage

from .error_message import ErrorMessage
from .error_resources import ActivityErrorResources

# Singleton instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -64000 to -64999.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from .error_message import ErrorMessage


class ActivityErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Error resources for Microsoft Agents Authentication MSAL package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import AuthenticationErrorResources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -60000 to -60999.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class AuthenticationErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Error resources for Microsoft Agents Copilot Studio Client package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import CopilotStudioErrorResources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -65000 to -65999.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class CopilotStudioErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
following the pattern established in the C# SDK.
"""

from .error_message import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import ErrorResources

# Singleton instance
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
General/validation errors are in the range -66000 to -66999.
"""

from .error_message import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class ErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Error resources for Microsoft Agents Hosting Teams package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import TeamsErrorResources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -62000 to -62999.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class TeamsErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Error resources for Microsoft Agents Storage Blob package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import BlobStorageErrorResources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -61100 to -61199.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class BlobStorageErrorResources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Error resources for Microsoft Agents Storage Cosmos package.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage

from .error_resources import StorageErrorResources

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Error codes are in the range -61000 to -61999.
"""

from microsoft_agents.hosting.core.errors import ErrorMessage
from microsoft_agents.activity.errors import ErrorMessage


class StorageErrorResources:
Expand Down
Loading