class Syskit::PropertyUpdateError

Attributes

property[R]

Public Class Methods

new(error, property) click to toggle source
Calls superclass method
# File lib/syskit/exceptions.rb, line 987
def initialize(error, property)
    @property = property
    super(error, property.task_context)
end

Public Instance Methods

pretty_print(pp) click to toggle source
# File lib/syskit/exceptions.rb, line 992
def pretty_print(pp)
    pp.text "#{self.class.name}: updating property #{property.name} failed with"
    failure_point.pretty_print(pp)
end