====
[plcapi.git] / PLC / Faults.py
index 1b2cdd3..cebe5c5 100644 (file)
@@ -5,7 +5,6 @@
 # Mark Huang <mlhuang@cs.princeton.edu>
 #
 # Copyright (C) 2004-2006 The Trustees of Princeton University
-# $Id$
 #
 
 import xmlrpclib
@@ -46,11 +45,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 +55,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"