Source code for franz.openrdf.exceptions

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable-msg=C0103

################################################################################
# Copyright (c) 2006-2017 Franz Inc.  
# All rights reserved. This program and the accompanying materials are
# made available under the terms of the MIT License which accompanies
# this distribution, and is available at http://opensource.org/licenses/MIT
################################################################################

from __future__ import unicode_literals
from franz.miniclient.request import RequestError

[docs]class IllegalOptionException(Exception): pass
[docs]class IllegalArgumentException (Exception): pass
[docs]class RDFHandlerException(Exception): pass
[docs]class ServerException(Exception): pass
[docs]class QueryMissingFeatureException(Exception): """ Source language evokes a feature not supported by the execution language """