Exception: ZendeskAppsSupport::Manifest::OverrideError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/zendesk_apps_support/manifest/no_override_hash.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, original, attempted) ⇒ OverrideError

Returns a new instance of OverrideError.



8
9
10
11
12
# File 'lib/zendesk_apps_support/manifest/no_override_hash.rb', line 8

def initialize(key, original, attempted)
  @key = key
  @original = original
  @attempted = attempted
end

Instance Attribute Details

#attemptedObject (readonly)

Returns the value of attribute attempted.



6
7
8
# File 'lib/zendesk_apps_support/manifest/no_override_hash.rb', line 6

def attempted
  @attempted
end

#keyObject (readonly)

Returns the value of attribute key.



6
7
8
# File 'lib/zendesk_apps_support/manifest/no_override_hash.rb', line 6

def key
  @key
end

#messageObject

Returns the value of attribute message.



7
8
9
# File 'lib/zendesk_apps_support/manifest/no_override_hash.rb', line 7

def message
  @message
end

#originalObject (readonly)

Returns the value of attribute original.



6
7
8
# File 'lib/zendesk_apps_support/manifest/no_override_hash.rb', line 6

def original
  @original
end