Class HostMap::Exception::TargetError
In: lib/exceptions.rb
Parent: ArgumentError

The supplied target is not valid.

Methods

new   to_s  

Included Modules

Exception

Public Class methods

[Source]

# File lib/exceptions.rb, line 29
      def initialize(args)
        @args = args
      end

Public Instance methods

[Source]

# File lib/exceptions.rb, line 33
      def to_s
        "The supplied target is not valid: #{@args}"
      end

[Validate]