remove dead end formats (unscalable png, visio, powerpoint) and replace
[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