Top

pandasticsearch.errors module

# -*- coding: UTF-8 -*-

class PandasticSearchException(RuntimeError):
    def __init__(self, msg):
        super(PandasticSearchException, self).__init__(msg)


class NoSuchDependencyException(PandasticSearchException):
    pass


class ServerDefinedException(PandasticSearchException):
    pass


class ParseResultException(PandasticSearchException):
    pass

Classes

class NoSuchDependencyException

Unspecified run-time error.

class NoSuchDependencyException(PandasticSearchException):
    pass

Ancestors (in MRO)

Class variables

var args

Static methods

def __init__(

self, msg)

Inheritance: PandasticSearchException.__init__

Initialize self. See help(type(self)) for accurate signature.

def __init__(self, msg):
    super(PandasticSearchException, self).__init__(msg)

class PandasticSearchException

Unspecified run-time error.

class PandasticSearchException(RuntimeError):
    def __init__(self, msg):
        super(PandasticSearchException, self).__init__(msg)

Ancestors (in MRO)

Class variables

var args

Static methods

def __init__(

self, msg)

Initialize self. See help(type(self)) for accurate signature.

def __init__(self, msg):
    super(PandasticSearchException, self).__init__(msg)

class ParseResultException

Unspecified run-time error.

class ParseResultException(PandasticSearchException):
    pass

Ancestors (in MRO)

Class variables

var args

Static methods

def __init__(

self, msg)

Inheritance: PandasticSearchException.__init__

Initialize self. See help(type(self)) for accurate signature.

def __init__(self, msg):
    super(PandasticSearchException, self).__init__(msg)

class ServerDefinedException

Unspecified run-time error.

class ServerDefinedException(PandasticSearchException):
    pass

Ancestors (in MRO)

Class variables

var args

Static methods

def __init__(

self, msg)

Inheritance: PandasticSearchException.__init__

Initialize self. See help(type(self)) for accurate signature.

def __init__(self, msg):
    super(PandasticSearchException, self).__init__(msg)