exception documentation
class RemoteAmpError(AmpError): (source)
Known subclasses: twisted.protocols.amp.UnknownRemoteError
Constructor: RemoteAmpError(errorCode, description, fatal, local)
This error indicates that something went wrong on the remote end of the connection, and the error was serialized and transmitted to you.
| Method | __init__ |
Create a remote error with an error code and description. |
| Instance Variable | description |
Undocumented |
| Instance Variable | error |
Undocumented |
| Instance Variable | fatal |
Undocumented |
| Instance Variable | local |
Undocumented |
overridden in
twisted.protocols.amp.UnknownRemoteErrorCreate a remote error with an error code and description.
| Parameters | |
| error | the AMP error code of this error. |
| description:str | some text to show to the user. |
| fatal | a boolean, true if this error should terminate the connection. |
| local | a local Failure, if one exists. |