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
AdminExceptions.py
Go to the documentation of this file.
1 '''
2 Created on Feb 17, 2014
3 
4 @author: scorp
5 @link: http://hierarchical-cluster-engine.com/
6 @copyright: Copyright © 2013-2014 IOIX Ukraine
7 @license: http://hierarchical-cluster-engine.com/license/
8 @since: 0.1
9 '''
10 
11 
12 class AdminTimeoutException(Exception):
13  def __init__(self, message):
14  Exception.__init__(self, message)
15 
16 
17 class AdminWrongConnectionKey(Exception):
18  def __init__(self, message):
19  Exception.__init__(self, message)
AdminExceptions module keepts admin module native exceptions.