git://git.onelab.eu
/
bootmanager.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
sync sys clock to hardware to prevent fsck reboot bug for systems with wrong
[bootmanager.git]
/
source
/
Exceptions.py
1
#!/usr/bin/python
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