Exception: Fog::Compute::RackspaceV2::InvalidStateException

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/fog/rackspace/compute_v2.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(desired_state, current_state) ⇒ InvalidStateException

Returns a new instance of InvalidStateException.



18
19
20
21
# File 'lib/fog/rackspace/compute_v2.rb', line 18

def initialize(desired_state, current_state)
  @desired_state = desired_state
  @current_state = current_state
end

Instance Attribute Details

#current_stateObject (readonly)

Returns the value of attribute current_state.



16
17
18
# File 'lib/fog/rackspace/compute_v2.rb', line 16

def current_state
  @current_state
end

#desired_stateObject (readonly)

Returns the value of attribute desired_state.



15
16
17
# File 'lib/fog/rackspace/compute_v2.rb', line 15

def desired_state
  @desired_state
end