- In kernel versions <2.6.14, mptscsih is the actual module that should
[bootmanager.git] / source / Exceptions.py
1
2 class BootManagerException(Exception):
3     def __init__( self, err ):
4         self.__fault= err
5
6     def __str__( self ):
7         return self.__fault
8