Exception: Bashcov::XtraceError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Bashcov::XtraceError
- Defined in:
- lib/bashcov/errors.rb
Overview
Signals an error parsing Bash’s debugging output.
Instance Attribute Summary collapse
-
#files ⇒ Object
readonly
Will contain the coverages parsed prior to the error.
Instance Method Summary collapse
-
#initialize(message, files) ⇒ XtraceError
constructor
A new instance of XtraceError.
Constructor Details
#initialize(message, files) ⇒ XtraceError
Returns a new instance of XtraceError.
11 12 13 14 |
# File 'lib/bashcov/errors.rb', line 11 def initialize(, files) @files = files super() end |
Instance Attribute Details
#files ⇒ Object (readonly)
Will contain the coverages parsed prior to the error
7 8 9 |
# File 'lib/bashcov/errors.rb', line 7 def files @files end |