diff options
author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 13:49:07 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 13:49:07 +0000 |
commit | 1b64520816d91bd3252ae41b566a3eda15c946ba (patch) | |
tree | 74ca4824429d53bea6019707545949e1f57e7102 | |
parent | 313317d3cc53fa88a8cdee36dc4bdf50150c94be (diff) |
Ensure we have a sane argument to our constructor.
-rw-r--r-- | lib/custodian/util/ping.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/custodian/util/ping.rb b/lib/custodian/util/ping.rb index 86fa2ab..9abc746 100644 --- a/lib/custodian/util/ping.rb +++ b/lib/custodian/util/ping.rb @@ -25,6 +25,10 @@ module Custodian # Save the hostname away, resolve it if possible. # def initialize( hostname ) + + raise ArgumentError, "Hostname must not be nil" if ( hostname.nil? ) + raise ArgumentError, "Hostname must be a String" unless hostname.kind_of?( String ) + @hostname = hostname @resolved = Custodian::Util::DNS.hostname_to_ip( hostname ) end |