- mount /proc in system image before running yum 2.4, which now
[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