Exception: Faml::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Faml::Error
- Defined in:
- lib/faml/error.rb
Direct Known Subclasses
FilterCompilers::NotFound, TextCompiler::InvalidInterpolation, UnparsableRubyCode
Instance Attribute Summary collapse
-
#lineno ⇒ Object
Returns the value of attribute lineno.
Instance Method Summary collapse
-
#initialize(message, lineno) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(message, lineno) ⇒ Error
Returns a new instance of Error.
6 7 8 9 |
# File 'lib/faml/error.rb', line 6 def initialize(, lineno) super() @lineno = lineno end |
Instance Attribute Details
#lineno ⇒ Object
Returns the value of attribute lineno.
4 5 6 |
# File 'lib/faml/error.rb', line 4 def lineno @lineno end |