Sha256: b8b715ec842930937d60d4e170cbad5fdf69d5e15c5a0ffd39191d4de54d4a30

Contents?: true

Size: 574 Bytes

Versions: 1

Compression:

Stored size: 574 Bytes

Contents

module CloudCrowd
  
  # Base Error class which all custom CloudCrowd exceptions inherit from.
  class Error < RuntimeError #:nodoc:
  end
  
  # ActionNotFound is raised when a job is created for an action that doesn't 
  # exist.
  class ActionNotFound < Error #:nodoc:
  end
  
  # StorageNotFound is raised when config.yml specifies a storage back end that
  # doesn't exist.
  class StorageNotFound < Error #:nodoc:
  end
  
  # StatusUnspecified is raised when a WorkUnit returns without a valid
  # status code.
  class StatusUnspecified < Error #:nodoc:
  end
  
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
documentcloud-cloud-crowd-0.0.6 lib/cloud_crowd/exceptions.rb