class Exception

Public Class Methods

match() click to toggle source

Create a {Queries::CodeErrorMatcher} object that matches this exception

@return [Queries::CodeErrorMatcher]

# File lib/roby/standard_errors.rb, line 5
def self.match
    Roby::CodeError.match.with_ruby_exception(self)
end
to_execution_exception_matcher() click to toggle source
# File lib/roby/standard_errors.rb, line 9
def self.to_execution_exception_matcher
    match.to_execution_exception_matcher
end

Public Instance Methods

involved_plan_object?(obj) click to toggle source

True if obj is involved in this error

# File lib/roby/standard_errors.rb, line 18
def involved_plan_object?(obj)
    false
end
pretty_print(pp) click to toggle source
# File lib/roby/standard_errors.rb, line 13
def pretty_print(pp)
    pp.text "#{message} (#{self.class.name})"
end
user_error?() click to toggle source
# File lib/roby/standard_errors.rb, line 22
def user_error?; false end