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