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

The result enumerated is a not valid result.

Methods

new   to_s  

Included Modules

Exception

Public Class methods

[Source]

# File lib/exceptions.rb, line 14
      def initialize(opts = [])
        @opts = opts
      end

Public Instance methods

[Source]

# File lib/exceptions.rb, line 18
      def to_s
        "The found enumeration is a not valid result: #{@opts.join(', ')}"
      end

[Validate]