MCPcopy Create free account
hub / github.com/agenticsorg/edge-agents / __init__

Method __init__

scripts/agents/devops/src/aws/base.py:25–35  ·  view source on GitHub ↗

Initialize the AWS service error. Args: message: Error message suggestion: Optional suggestion for resolving the error

(self, message: str, suggestion: Optional[str] = None)

Source from the content-addressed store, hash-verified

23 """Base exception for AWS service errors."""
24
25 def __init__(self, message: str, suggestion: Optional[str] = None):
26 """
27 Initialize the AWS service error.
28
29 Args:
30 message: Error message
31 suggestion: Optional suggestion for resolving the error
32 """
33 self.message = message
34 self.suggestion = suggestion
35 super().__init__(message)
36
37 def __str__(self) -> str:
38 return self.message

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected