Exception: Common::InvalidParameter

Inherits:
ParameterError show all
Defined in:
lib/common/cloudbox_exceptions.rb

Overview

Throws an exception if a parameter is invalid.

Instance Method Summary collapse

Methods inherited from ParameterError

#usage

Constructor Details

#initialize(param, usage) ⇒ InvalidParameter

Returns a new instance of InvalidParameter.



372
373
374
# File 'lib/common/cloudbox_exceptions.rb', line 372

def initialize(param, usage)
  super("Invalid parameter: " + param, usage)
end