Sha256: 90fb6d4df4a8edbf64af9625be36bf54daa1892050c1de9f0e6f9f789741f09a
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
module Rush # Base class for all rush exceptions. class Exception < ::RuntimeError; end # Client was not authorized by remote server; check credentials. class NotAuthorized < Exception; end # rushd is not running on the remote box. class RushdNotRunning < Exception; end # An unrecognized status code was returned by rushd. 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. stdout is also available. class BashFailed < Exception def stderr; to_s; end attr_reader :stdout def initialize(err, out) super(err) @stdout = out end 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 # A user or permission value specified to set access was not valid. class BadAccessSpecifier < Exception; end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
aleksi-rush-0.6.7 | lib/rush/exceptions.rb |
aleksi-rush-0.6.6 | lib/rush/exceptions.rb |