Sha256: 936a5a8261529f4e9ae3df7a019d0a20559255d8a8793e03e9dbc2660191fd24

Contents?: true

Size: 357 Bytes

Versions: 3

Compression:

Stored size: 357 Bytes

Contents

module Capistrano
  class Error < RuntimeError; end

  class CaptureError < Error; end
  class NoSuchTaskError < Error; end
  class NoMatchingServersError < Error; end
  
  class RemoteError < Error
    attr_accessor :hosts
  end

  class ConnectionError < RemoteError; end
  class UploadError < RemoteError; end
  class CommandError < RemoteError; end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
capistrano-2.0.0 lib/capistrano/errors.rb
capistrano-2.1.0 lib/capistrano/errors.rb
capistrano-2.2.0 lib/capistrano/errors.rb