1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
__metaclass__ = type
__all__ = [
'AddAnswerContactError',
]
import httplib
from lazr.restful.declarations import webservice_error
class AddAnswerContactError(ValueError):
"""The person cannot be an answer contact.
An answer contacts must be a valid user or team that has a preferred
language.
"""
webservice_error(httplib.BAD_REQUEST)
|