Exception: Aws::Xml::Parser::ParsingError Private
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Aws::Xml::Parser::ParsingError
- Defined in:
- lib/aws-sdk-core/xml/parser/parsing_error.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary collapse
- #column ⇒ Integer? readonly private
- #line ⇒ Integer? readonly private
Instance Method Summary collapse
-
#initialize(msg, line, column) ⇒ ParsingError
constructor
private
A new instance of ParsingError.
Constructor Details
#initialize(msg, line, column) ⇒ ParsingError
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of ParsingError.
6 7 8 |
# File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 6 def initialize(msg, line, column) super(msg) end |
Instance Attribute Details
#column ⇒ Integer? (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 |
# File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 14 def column @column end |
#line ⇒ Integer? (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
11 12 13 |
# File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 11 def line @line end |