svn keywords
[plcapi.git] / PLC / Faults.py
index 1b2cdd3..3309cb6 100644 (file)
@@ -6,6 +6,7 @@
 #
 # Copyright (C) 2004-2006 The Trustees of Princeton University
 # $Id$
+# $URL$
 #
 
 import xmlrpclib
@@ -46,11 +47,6 @@ class PLCAuthenticationFailure(PLCFault):
         faultString = "Failed to authenticate call"
         PLCFault.__init__(self, 103, faultString, extra)
 
-class PLCNotImplemented(PLCFault):
-    def __init__(self, extra = None):
-        faultString = "Not fully implemented"
-        PLCFault.__init__(self, 109, faultString, extra)
-
 class PLCDBError(PLCFault):
     def __init__(self, extra = None):
         faultString = "Database error"
@@ -61,6 +57,11 @@ class PLCPermissionDenied(PLCFault):
         faultString = "Permission denied"
         PLCFault.__init__(self, 108, faultString, extra)
 
+class PLCNotImplemented(PLCFault):
+    def __init__(self, extra = None):
+        faultString = "Not fully implemented"
+        PLCFault.__init__(self, 109, faultString, extra)
+
 class PLCAPIError(PLCFault):
     def __init__(self, extra = None):
         faultString = "Internal API error"