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