915f120195ac1717eaf752da3d07e74be5e29e1d
[bootmanager.git] / source / Exceptions.py
1 #!/usr/bin/python2
2
3 # Copyright (c) 2003 Intel Corporation
4 # All rights reserved.
5 #
6 # Copyright (c) 2004-2006 The Trustees of Princeton University
7 # All rights reserved.
8
9 class BootManagerException(Exception):
10     def __init__( self, err ):
11         self.__fault= err
12
13     def __str__( self ):
14         return self.__fault
15