mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-18 09:55:02 +08:00
15 lines
172 B
Python
15 lines
172 B
Python
class _JediError(Exception):
|
|
pass
|
|
|
|
|
|
class InternalError(_JediError):
|
|
pass
|
|
|
|
|
|
class WrongVersion(_JediError):
|
|
pass
|
|
|
|
|
|
class RefactoringError(_JediError):
|
|
pass
|