Merge changes from branch 'countrylist-module'

+ Fixed syntax error
This commit is contained in:
2015-11-13 12:23:02 +01:00

View File

@@ -329,3 +329,16 @@ missing!" )
else:
raise CountryListEntryError( "Template Parameter 'Interpret' is \
missing!" )
class CountryListError( Exception ):
"""
Handles errors occuring in class CountryList
"""
pass
class CountryListEntryError( CountryListError ):
"""
Handles errors occuring in class CountryList related to entrys
"""
pass