Commit f9f975e3 authored by Nicolas Dumazet's avatar Nicolas Dumazet

meaningful errors


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@41243 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6178dac7
...@@ -221,7 +221,7 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi ...@@ -221,7 +221,7 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi
# This is very temporary code - XXX needs to be changed # This is very temporary code - XXX needs to be changed
# so that the system can retry # so that the system can retry
raise ConversionError("OOoDocument: can not get list of allowed acceptable" raise ConversionError("OOoDocument: can not get list of allowed acceptable"
" formats for conversion: %s (%s)" % ( " formats for conversion (Code %s: %s)" % (
response_code, response_message)) response_code, response_message))
except Fault, f: except Fault, f:
...@@ -465,7 +465,7 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi ...@@ -465,7 +465,7 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi
else: else:
# Explicitly raise the exception! # Explicitly raise the exception!
raise ConversionError( raise ConversionError(
"OOoDocument: Error converting document to base format %s:%s:" "OOoDocument: Error converting document to base format. (Code %s: %s)"
% (response_code, response_message)) % (response_code, response_message))
def _getContentInformation(self): def _getContentInformation(self):
...@@ -498,5 +498,5 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi ...@@ -498,5 +498,5 @@ class OOoDocument(OOoDocumentExtensibleTraversableMixin, BaseConvertableFileMixi
self.updateFileMetadata() # record in workflow history # XXX must put appropriate comments. self.updateFileMetadata() # record in workflow history # XXX must put appropriate comments.
else: else:
# Explicitly raise the exception! # Explicitly raise the exception!
raise ConversionError("OOoDocument: error getting document metadata %s:%s" raise ConversionError("OOoDocument: error getting document metadata (Code %s: %s)"
% (response_code, response_message)) % (response_code, response_message))
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment