Method: CloudDoor::CloudStorage#method_missing

Defined in:
lib/cloud_door/cloud_storage.rb

#method_missing(method, *args) ⇒ Object



46
47
48
49
50
51
52
# File 'lib/cloud_door/cloud_storage.rb', line 46

def method_missing(method, *args)
  if ABSTRACT_METHODS.include?(method.to_s)
    raise AbstractMethodException, "'#{method.to_s}' is abstract method. please define on subclass."
  else
    super
  end
end