Wizards Magic  3.2.20
MTG based computer game
 All Classes Namespaces Files Functions Variables Typedefs Macros
Public Member Functions | Public Attributes | List of all members
simplejson.decoder.JSONDecodeError Class Reference
Inheritance diagram for simplejson.decoder.JSONDecodeError:

Public Member Functions

def __init__
 

Public Attributes

 msg
 
 doc
 
 pos
 
 end
 
 colno
 
 endcolno
 

Detailed Description

Subclass of ValueError with the following additional properties:

msg: The unformatted error message
doc: The JSON document being parsed
pos: The start index of doc where parsing failed
end: The end index of doc where parsing failed (may be None)
lineno: The line corresponding to pos
colno: The column corresponding to pos
endlineno: The line corresponding to end (may be None)
endcolno: The column corresponding to end (may be None)

Constructor & Destructor Documentation

def simplejson.decoder.JSONDecodeError.__init__ (   self,
  msg,
  doc,
  pos,
  end = None 
)

Member Data Documentation

simplejson.decoder.JSONDecodeError.colno
simplejson.decoder.JSONDecodeError.doc
simplejson.decoder.JSONDecodeError.end
simplejson.decoder.JSONDecodeError.endcolno
simplejson.decoder.JSONDecodeError.msg
simplejson.decoder.JSONDecodeError.pos

The documentation for this class was generated from the following file: