class RubyQC::Error
Attributes
errors[R]
times[R]
Public Class Methods
new(times, errors)
click to toggle source
Calls superclass method
# File lib/rubyqc/error.rb, line 5 def initialize times, errors @times, @errors = times, errors super("RubyQC::Error: #{errors.size} errors out of #{times}:" \ " #{errors.inspect}") end