move code block to write out /etc/planetlab/session to ChainBootNode, since
[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