X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=source%2FExceptions.py;h=be4587eb534cbdbb475871d386aaacf8dad865d2;hb=fedd02d122a4e365b3c02059b55440b6c1a27f03;hp=9fa530156ebce1a0cf04686e26834bf7b2c4435f;hpb=fd9c3f87f4ce4f3881ecab5168284bed611fe8a4;p=bootmanager.git diff --git a/source/Exceptions.py b/source/Exceptions.py index 9fa5301..be4587e 100644 --- a/source/Exceptions.py +++ b/source/Exceptions.py @@ -13,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