module Rush # Base class for all rush exceptions. class Exception < ::Exception; end # Client was not authorized by remote server; check credentials. class NotAuthorized < Exception; end # Failed to transmit to the remote server; check if the ssh tunnel is alive, # and rushd is listening on the other end. class FailedTransmit < Exception; end # The entry (file or dir) referenced does not exist. Message is the entry's full path. class DoesNotExist < Exception; end # The bash command had a non-zero return value. Message is stderr. class BashFailed < Exception; end # There's already an entry by the given name in the given dir. class NameAlreadyExists < Exception; end # The name cannot contain a slash; use two operations, rename and then move, instead. class NameCannotContainSlash < Exception; end # You cannot move or copy entries to a path that is not a dir (should end with trailing slash). class NotADir < Exception; end end