Sha256: 4e5569455612013a069c3de06718cbc5e8f18a9330fc727e96b2a6e1b20da67b

Contents?: true

Size: 1.12 KB

Versions: 24

Compression:

Stored size: 1.12 KB

Contents

module S3Website
  class S3WebsiteError < StandardError
  end

  class NoWebsiteDirectoryFound < S3WebsiteError
    def initialize(message = "I can't find any website. Are you in the right directory?")
      super(message)
    end
  end

  class NoPredefinedWebsiteDirectoryFound < NoWebsiteDirectoryFound
    def initialize(message = "I can't find a website in any of the following directories: #{Paths.site_paths.join(', ')}. Please specify the location of the website with the --site option.")
      super(message)
    end
  end

  class NoConfigurationFileError < S3WebsiteError
    def initialize(message = "I've just generated a file called s3_website.yml. Go put your details in it!")
      super(message)
    end
  end

  class MalformedConfigurationFileError < S3WebsiteError
    def initialize(message = "I can't parse the file s3_website.yml. It should look like this:\n#{ConfigLoader.read_configuration_file_template}")
      super(message)
    end
  end

  class RetryAttemptsExhaustedError < S3WebsiteError
    def initialize(message = "Operation failed even though we tried to recover from it")
      super(message)
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
s3_website-1.6.3 lib/s3_website/errors.rb
s3_website-1.6.2 lib/s3_website/errors.rb
s3_website-1.6.1 lib/s3_website/errors.rb
s3_website-1.6.0 lib/s3_website/errors.rb
s3_website-1.5.0 lib/s3_website/errors.rb
s3_website-1.4.5 lib/s3_website/errors.rb
s3_website-1.4.4 lib/s3_website/errors.rb
s3_website-1.4.3 lib/s3_website/errors.rb
s3_website-1.4.2 lib/s3_website/errors.rb
s3_website-1.4.1 lib/s3_website/errors.rb
s3_website-1.4.0 lib/s3_website/errors.rb
s3_website-1.3.2 lib/s3_website/errors.rb
s3_website-1.3.1 lib/s3_website/errors.rb
s3_website-1.3.0 lib/s3_website/errors.rb
s3_website-1.2.1 lib/s3_website/errors.rb
s3_website-1.2.0 lib/s3_website/errors.rb
s3_website-1.1.2 lib/s3_website/errors.rb
s3_website-1.1.1 lib/s3_website/errors.rb
s3_website-1.1.0 lib/s3_website/errors.rb
s3_website-1.0.3 lib/s3_website/errors.rb