Exception: ElasticBeans::DnsEntry::MissingHostedZoneError

Inherits:
Error
  • Object
show all
Defined in:
lib/elastic_beans/dns_entry.rb

Instance Method Summary collapse

Constructor Details

#initialize(name:, tld:) ⇒ MissingHostedZoneError

Returns a new instance of MissingHostedZoneError.



110
111
112
113
# File 'lib/elastic_beans/dns_entry.rb', line 110

def initialize(name:, tld:)
  @name = name
  @tld = tld
end

Instance Method Details

#messageObject



115
116
117
# File 'lib/elastic_beans/dns_entry.rb', line 115

def message
  "Could not find TLD `#{@tld}.' for DNS entry `#{@name}' in Route53"
end