Exception: NestedText::Errors::ParseCustomClassNotFoundError
- Inherits:
-
ParseError
- Object
- StandardError
- NestedText::Error
- InternalError
- ParseError
- NestedText::Errors::ParseCustomClassNotFoundError
- Defined in:
- lib/nestedtext/errors_internal.rb
Instance Attribute Summary
Attributes inherited from ParseError
Instance Method Summary collapse
-
#initialize(line, class_name) ⇒ ParseCustomClassNotFoundError
constructor
A new instance of ParseCustomClassNotFoundError.
Constructor Details
#initialize(line, class_name) ⇒ ParseCustomClassNotFoundError
Returns a new instance of ParseCustomClassNotFoundError.
188 189 190 191 192 |
# File 'lib/nestedtext/errors_internal.rb', line 188 def initialize(line, class_name) super(line, line.indentation, "Detected an encode custom class #{class_name} " \ "however we can't find it, so it can't be deserialzied.") end |