root / rdfalchemy / trunk / rdfalchemy / exceptions.py

Revision 124, 448 bytes (checked in by phil, 8 months ago)

rdfalchemy Tweeked the logging to fix {20}

Line 
1class RDFAlchemyError(Exception):
2    """Generic error class."""
3
4
5class SPARQLError(Exception):
6    """Base SPARQL Error"""
7
8class MalformedQueryError(SPARQLError):
9    """Query Syntax Error for SPARQL RDQL etc
10   
11    In Sesame:
12       org.openrdf.query.MalformedQueryException"""
13
14class QueryEvaluationError(SPARQLError):
15    """Query Evaluation Error reported by Server
16   
17    In Sesame:
18      org.openrdf.query.QueryEvaluationException"""
Note: See TracBrowser for help on using the browser.