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.
| 8 9 10 | # File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 8 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.
| 16 17 18 | # File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 16 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.
| 13 14 15 | # File 'lib/aws-sdk-core/xml/parser/parsing_error.rb', line 13 def line @line end |