예제 #1
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self):
     Fault.__init__(self, faultcode="ElbeInvalidState", faultstring="Project is Busy ! Operation Invalid")
예제 #2
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self):
     Fault.__init__(self, faultcode="ElbeNotAuthorized", faultstring="Not Authorized ! Cant let you perform this command.")
예제 #3
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self, exc):
     Fault.__init__(self, faultcode="ElbeValidationError", faultstring=exc.__repr__())
예제 #4
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self):
     Fault.__init__(self, faultcode="ElbeAuthenticationFailed", faultstring="Authentication Failed")
예제 #5
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self):
     Fault.__init__(self, faultcode="ElbeNotLoggedIn", faultstring="Not authenticated ! Cant let you perform this command.")
예제 #6
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self, dberr):
     Fault.__init__(self, faultcode="ElbeDBError", faultstring=str(dberr))
예제 #7
0
파일: faults.py 프로젝트: atoz-chevara/elbe
 def __init__(self, err):
     Fault.__init__(self, faultcode="ElbeProjectError", faultstring=str(err))
예제 #8
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self, exc):
     Fault.__init__(self,
                    faultcode="ElbeValidationError",
                    faultstring=exc.__repr__())
예제 #9
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self):
     Fault.__init__(self,
                    faultcode="ElbeInvalidState",
                    faultstring="Project is Busy ! Operation Invalid")
예제 #10
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self):
     Fault.__init__(
         self,
         faultcode="ElbeNotAuthorized",
         faultstring="Not Authorized ! Cant let you perform this command.")
예제 #11
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self):
     Fault.__init__(
         self,
         faultcode="ElbeNotLoggedIn",
         faultstring="Not authenticated ! Cant let you perform this command."
     )
예제 #12
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self):
     Fault.__init__(self,
                    faultcode="ElbeAuthenticationFailed",
                    faultstring="Authentication Failed")
예제 #13
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self, err):
     Fault.__init__(self,
                    faultcode="ElbeProjectError",
                    faultstring=str(err))
예제 #14
0
파일: faults.py 프로젝트: lwalewski/elbe
 def __init__(self, dberr):
     Fault.__init__(self, faultcode="ElbeDBError", faultstring=str(dberr))