Exceptions thrown when the agent returns an error during the simulation
| 38 | |
| 39 | |
| 40 | class AgentError(Exception): |
| 41 | """ |
| 42 | Exceptions thrown when the agent returns an error during the simulation |
| 43 | """ |
| 44 | |
| 45 | def __init__(self, message): |
| 46 | super(AgentError, self).__init__(message) |
| 47 | |
| 48 | |
| 49 | class AgentWrapper(object): |