Exception: FindApp::ApplicationNotFoundError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/_aem/findapp.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(creator, id, name) ⇒ ApplicationNotFoundError

Returns a new instance of ApplicationNotFoundError.



16
17
18
19
# File 'lib/_aem/findapp.rb', line 16

def initialize(creator, id, name)
  @creator_type, @bundle_id, @application_name  = creator, id, name
  super()
end

Instance Attribute Details

#application_nameObject (readonly)

Returns the value of attribute application_name.



14
15
16
# File 'lib/_aem/findapp.rb', line 14

def application_name
  @application_name
end

#bundle_idObject (readonly)

Returns the value of attribute bundle_id.



14
15
16
# File 'lib/_aem/findapp.rb', line 14

def bundle_id
  @bundle_id
end

#creator_typeObject (readonly)

Returns the value of attribute creator_type.



14
15
16
# File 'lib/_aem/findapp.rb', line 14

def creator_type
  @creator_type
end