fc81fd3ac3e5f0d6e24762c602257aec435aabdb
[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