Imported Upstream version 0.48
[platform/upstream/libical.git] / src / python / Error.py
1
2
3 class LibicalError(Exception):
4     "Libical Error"
5
6     def __init__(self,str):
7         Exception.__init__(self,str)
8
9     def __str__(self):
10         return Exception.__str__(self)+"\nLibical errno: "+icalerror_perror()