Skip to content
Snippets Groups Projects
Commit 300e5450 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

errors: Document arguments to QueryFilterParseError


Also fix one small mistake in the docstring for QuitGanetiException.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent fc07a14e
No related branches found
No related tags found
No related merge requests found
......@@ -303,7 +303,7 @@ class QuitGanetiException(Exception):
This is not necessarily an error (and thus not a subclass of
GenericError), but it's an exceptional circumstance and it is thus
treated. This instance should be instantiated with two values. The
treated. This exception should be instantiated with two values. The
first one will specify the return code to the caller, and the second
one will be the returned result (either as an error or as a normal
result). Usually only the leave cluster rpc call should return
......@@ -386,6 +386,11 @@ class LuxiError(GenericError):
class QueryFilterParseError(ParseError):
"""Error while parsing query filter.
This exception must be instantiated with two values. The first one is a
string with an error description, the second one is an instance of a subclass
of C{pyparsing.ParseBaseException} (used to display the exact error
location).
"""
def GetDetails(self):
"""Returns a list of strings with details about the error.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment