X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FExceptions.py;h=be4587eb534cbdbb475871d386aaacf8dad865d2;hb=fedd02d122a4e365b3c02059b55440b6c1a27f03;hp=fc81fd3ac3e5f0d6e24762c602257aec435aabdb;hpb=7ab7e9dd797333a9fdc8604554e16e192a32144d;p=bootmanager.git diff --git a/source/Exceptions.py b/source/Exceptions.py index fc81fd3..be4587e 100644 --- a/source/Exceptions.py +++ b/source/Exceptions.py @@ -1,3 +1,10 @@ +#!/usr/bin/python + +# Copyright (c) 2003 Intel Corporation +# All rights reserved. +# +# Copyright (c) 2004-2006 The Trustees of Princeton University +# All rights reserved. class BootManagerException(Exception): def __init__( self, err ): @@ -6,3 +13,9 @@ class BootManagerException(Exception): def __str__( self ): return self.__fault +class BootManagerAuthenticationException(Exception): + def __init__( self, err ): + self.__fault= err + + def __str__( self ): + return self.__fault