Rcov report for: app/models/hudson_api_error.rb

NameTotal linesLines of codeTotal coverageCode coverage
app/models/hudson_api_error.rb138
100.00%
100.00%
1 # To change this template, choose Tools | Templates
2 # and open the template in the editor.
3 
4 class HudsonApiError
5 
6   attr_reader :class_name, :method_name, :exception
7 
8   def initialize(class_name, method_name, exception)
9     @class_name = class_name
10     @method_name = method_name
11     @exception = exception
12   end
13 end