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

Source Code for Module miopia.util.exceptions.LanguageNotSupportedException

 1  ''' 
 2  @author: Miguel Hermo 
 3  ''' 
4 -class LanguageNotSupportedException(Exception):
5 - def __init__(self, lang):
6 self.__lang = lang
7 - def __str__(self):
8 return repr('LanguageNotSupported:'+self.__lang)
9