Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/psqlparse-1.0rc7-py3.11-linux-x86_64.egg/psqlparse/exceptions.py: 80%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

10 statements  

1import six 

2 

3 

4@six.python_2_unicode_compatible 

5class PSqlParseError(Exception): 

6 

7 def __init__(self, message, lineno, cursorpos): 

8 self.message = message 

9 self.lineno = lineno 

10 self.cursorpos = cursorpos 

11 

12 def __str__(self): 

13 return self.message