added sfa.pdf
[sfa.git] / cmdline / cliexcep.py
1 from excep import *
2
3 class NoCertInDirectory(Exception):
4     def __init__(self, value):
5         self.value = value
6     def __str__(self):
7         return repr(self.value)
8
9 class AuthenticationFailed(Exception):
10     def __init__(self, value):
11         self.value = value
12     def __str__(self):
13         return repr(self.value)