Exception: Common::MissingParameter

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

Overview

Throws an exception if a parameter is missing.

Instance Method Summary collapse

Methods inherited from ParameterError

#usage

Constructor Details

#initialize(param, usage) ⇒ MissingParameter



379
380
381
# File 'lib/common/cloudbox_exceptions.rb', line 379

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