[DOC] mail_thread: docstrings to add raised exceptions in message_process and message_route

bzr revid: tde@openerp.com-20140213090122-0gwin1pjigwu42sz
This commit is contained in:
Thibault Delavallée 2014-02-13 10:01:22 +01:00
parent bc0232cee6
commit dca7f71d71
1 changed files with 4 additions and 0 deletions

View File

@ -521,6 +521,8 @@ class mail_thread(osv.AbstractModel):
to which this mail should be attached. Only used if the message
does not reply to an existing thread and does not match any mail alias.
:return: list of [model, thread_id, custom_values, user_id]
:raises: ValueError, TypeError
"""
if not isinstance(message, Message):
raise TypeError('message must be an email.message.Message at this point')
@ -641,6 +643,8 @@ class mail_thread(osv.AbstractModel):
to which this mail should be attached. When provided, this
overrides the automatic detection based on the message
headers.
:raises: ValueError, TypeError
"""
if context is None:
context = {}