Exception: Liquid::Error
- Inherits:
-
StandardError
- Object
- StandardError
- Liquid::Error
- Defined in:
- lib/liquid/errors.rb
Direct Known Subclasses
ArgumentError, ContextError, FileSystemError, MemoryError, StackLevelError, StandardError, SyntaxError, TaintedError
Instance Attribute Summary collapse
-
#line_number ⇒ Object
Returns the value of attribute line_number.
-
#markup_context ⇒ Object
Returns the value of attribute markup_context.
Class Method Summary collapse
Instance Method Summary collapse
Instance Attribute Details
#line_number ⇒ Object
Returns the value of attribute line_number.
3 4 5 |
# File 'lib/liquid/errors.rb', line 3 def line_number @line_number end |
#markup_context ⇒ Object
Returns the value of attribute markup_context.
4 5 6 |
# File 'lib/liquid/errors.rb', line 4 def markup_context @markup_context end |
Class Method Details
Instance Method Details
#set_line_number_from_token(token) ⇒ Object
19 20 21 22 23 |
# File 'lib/liquid/errors.rb', line 19 def set_line_number_from_token(token) return unless token.respond_to?(:line_number) return if self.line_number self.line_number = token.line_number end |
#to_s(with_prefix = true) ⇒ Object
6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/liquid/errors.rb', line 6 def to_s(with_prefix=true) str = "" str << if with_prefix str << super() if markup_context str << " " str << markup_context end str end |