HCE Project Python language Distributed Tasks Manager Application, Distributed Crawler Application and client API bindings.  2.0.0-chaika
Hierarchical Cluster Engine Python language binding
Exceptions.py
Go to the documentation of this file.
1 '''
2 Created on July 29, 2016
3 
4 @package: dc_crawler
5 @file Exceptions.py
6 @author: Alexander Vybornyh <alexander.hce.cluster@gmail.com>
7 @link: http://hierarchical-cluster-engine.com/
8 @copyright: Copyright &copy; 2013-2016 IOIX Ukraine
9 @license: http://hierarchical-cluster-engine.com/license/
10 @since: 0.1
11 '''
12 
13 # # Exceptions module keepts exceptions for crawler module
14 class SyncronizeException(Exception):
15  def __init__(self, message):
16  Exception.__init__(self, message)
17 
18 
19 class CrawlerException(Exception):
20  def __init__(self, message):
21  Exception.__init__(self, message)
22 
23 
24 class InternalCrawlerException(Exception):
25  def __init__(self, message):
26  Exception.__init__(self, message)
27 
28 
29 class CrawlerFilterException(Exception):
30  def __init__(self, message):
31  Exception.__init__(self, message)