Exception: BuildMaster::PropertyMatchError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/buildmaster/common/tree_to_object.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(property, type, target) ⇒ PropertyMatchError

Returns a new instance of PropertyMatchError.



9
10
11
12
13
# File 'lib/buildmaster/common/tree_to_object.rb', line 9

def initialize(property, type, target)
  @property = property
  @type = type
  @target = target
end

Instance Attribute Details

#propertyObject (readonly)

Returns the value of attribute property.



7
8
9
# File 'lib/buildmaster/common/tree_to_object.rb', line 7

def property
  @property
end

#targetObject (readonly)

Returns the value of attribute target.



7
8
9
# File 'lib/buildmaster/common/tree_to_object.rb', line 7

def target
  @target
end

#typeObject (readonly)

Returns the value of attribute type.



7
8
9
# File 'lib/buildmaster/common/tree_to_object.rb', line 7

def type
  @type
end