You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add more error handling to the base service class. Throw SchemaValidationError exceptions instead of showing a big nasty (useless) suds traceback. Also catch general Fedex errors unless over-rridden on each class.
There is probably a problem in the data you provided.
41
+
"""
42
+
def__init__(self):
43
+
self.error_code=-1
44
+
self.value="suds encountered an error validating your data against this service's WSDL schema. Please double-check for missing or invalid values, filling all required fields."
45
+
37
46
classFedexBaseService(object):
38
47
"""
39
48
This class is the master class for all Fedex request objects. It gets all
0 commit comments