blob: 912553d14e61ee6266482da9303e1ee1707463ac (
plain)
1
2
3
4
5
6
7
8
9
10
|
class LibicalError(Exception):
"Libical Error"
def __init__(self,str):
Exception.__init__(self,str)
def __str__(self):
return Exception.__str__(self)+"\nLibical errno: "+icalerror_perror()
|