Lines Matching defs:Error
28 # 2001-08-20 fl Base xmlrpclib.Error on built-in Exception (from Paul Prescod)
41 # 2002-05-15 fl Added error constants (from Andrew Kuchling)
101 Error Base class for client errors
102 ProtocolError Indicates an HTTP protocol error
197 # Error constants (from Dan Libby's specification at
222 class Error(Exception):
228 # Indicates an HTTP-level protocol error. This is raised by the HTTP
229 # transport layer, if the server returns an error code other than 200
233 # @param errcode The HTTP error code.
234 # @param errmsg The HTTP error message.
237 class ProtocolError(Error):
238 """Indicates an HTTP protocol error."""
240 Error.__init__(self)
256 class ResponseError(Error):
269 class Fault(Error):
272 Error.__init__(self)
1265 except socket.error, e:
1629 except Error, v:
1630 print "ERROR", v
1638 except Error, v:
1639 print "ERROR", v