Source code for flambe.cluster.instance.errors


[docs]class RemoteCommandError(Exception): """Error raised when any remote command/script fail in an Instance. """ pass
[docs]class SSHConnectingError(Exception): """Error raised when opening a SSH connection fails. """ pass
[docs]class MissingAuthError(Exception): """Error raised when there is missing authentication information. """ pass
[docs]class RemoteFileTransferError(Exception): """Error raised when sending a local file to an Instance fails. """ pass