Exception: RailsLatex::ProcessingError
- Inherits:
-
StandardError
- Object
- StandardError
- RailsLatex::ProcessingError
- Defined in:
- lib/rails-latex/errors.rb
Instance Attribute Summary collapse
-
#log ⇒ Object
readonly
Returns the value of attribute log.
-
#src ⇒ Object
readonly
Returns the value of attribute src.
Instance Method Summary collapse
-
#initialize(msg = 'RailsLatex processing failed.', src = '', log = '') ⇒ ProcessingError
constructor
A new instance of ProcessingError.
Constructor Details
#initialize(msg = 'RailsLatex processing failed.', src = '', log = '') ⇒ ProcessingError
Returns a new instance of ProcessingError.
4 5 6 7 8 |
# File 'lib/rails-latex/errors.rb', line 4 def initialize(msg = 'RailsLatex processing failed.', src = '', log = '') @src = src @log = log super(msg) end |
Instance Attribute Details
#log ⇒ Object (readonly)
Returns the value of attribute log.
3 4 5 |
# File 'lib/rails-latex/errors.rb', line 3 def log @log end |
#src ⇒ Object (readonly)
Returns the value of attribute src.
3 4 5 |
# File 'lib/rails-latex/errors.rb', line 3 def src @src end |