Copyright notice for both Intel and Princeton
[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