Package miopia :: Package util :: Package exceptions :: Module FeatureTypeConfigurationException
[hide private]
[frames] | no frames]

Source Code for Module miopia.util.exceptions.FeatureTypeConfigurationException

 1  ''' 
 2  Created on 26/09/2013 
 3   
 4  @author: David Vilares 
 5  ''' 
 6   
7 -class FeatureTypeConfigurationException(Exception):
8 ''' 9 classdocs 10 ''' 11
12 - def __init__(self,value):
13 self.value = value
14
15 - def __str__(self):
16 return repr(self.value)
17