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
DTMAExceptions.py
Go to the documentation of this file.
1 '''
2 Created on Mar 26, 2014
3 
4 @package: dtm
5 @author: scorp
6 @link: http://hierarchical-cluster-engine.com/
7 @copyright: Copyright © 2013-2014 IOIX Ukraine
8 @license: http://hierarchical-cluster-engine.com/license/
9 @since: 0.1
10 '''
11 
12 
13 class DTMAEmptyClasses(Exception):
14  def __init__(self, message):
15  Exception.__init__(self, message)
16 
17 
18 class DTMAEmptyFields(Exception):
19  def __init__(self, message):
20  Exception.__init__(self, message)
21 
22 
23 class DTMANameValueException(Exception):
24  def __init__(self, message):
25  Exception.__init__(self, message)
DTMAExceptions module keepts DTMA module native exceptions.