Whamcloud - gitweb
- merge 0.7rc1 from b_devel to HEAD (20030612 merge point)
[fs/lustre-release.git] / lustre / utils / Lustre / error.py
1 import exceptions
2
3 class LconfError (exceptions.Exception):
4     def __init__(self, args):
5         self.args = args
6
7 class OptionError (exceptions.Exception):
8     def __init__(self, args):
9         self.args = args
10