[{
"type": "thumb-down",
"id": "hardToUnderstand",
"label":"Hard to understand"
},{
"type": "thumb-down",
"id": "incorrectInformationOrSampleCode",
"label":"Incorrect information or sample code"
},{
"type": "thumb-down",
"id": "missingTheInformationSamplesINeed",
"label":"Missing the information/samples I need"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]
Source code for google.appengine.api.mail_errors
#!/usr/bin/env python## Copyright 2007 Google Inc.## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.#"""Exceptions raised by the Mail API."""
[docs]classError(Exception):"""Base Mail error type."""
[docs]classBadRequestError(Error):"""The email is not valid."""
[docs]classInvalidSenderError(Error):"""The sender is not permitted to send mail for this application."""
[docs]classInvalidEmailError(Error):"""The specified email is invalid."""
[docs]classInvalidAttachmentTypeError(Error):"""The file type of the attachment is invalid."""
[docs]classInvalidHeaderNameError(Error):"""The header name is invalid."""
[docs]classMissingRecipientsError(Error):"""A recipient was not specified in the message."""
[docs]classMissingSenderError(Error):"""A sender was not specified in the message."""
[docs]classMissingSubjectError(Error):"""The subject was not specified in the message."""
[docs]classMissingBodyError(Error):"""A body was not specified in the message."""
[docs]classPayloadEncodingError(Error):"""The payload encoding is unknown."""
[docs]classUnknownEncodingError(PayloadEncodingError):"""The encoding is unknown."""
[docs]classUnknownCharsetError(PayloadEncodingError):"""The character set is unknown."""
[{
"type": "thumb-down",
"id": "hardToUnderstand",
"label":"Hard to understand"
},{
"type": "thumb-down",
"id": "incorrectInformationOrSampleCode",
"label":"Incorrect information or sample code"
},{
"type": "thumb-down",
"id": "missingTheInformationSamplesINeed",
"label":"Missing the information/samples I need"
},{
"type": "thumb-down",
"id": "otherDown",
"label":"Other"
}]
[{
"type": "thumb-up",
"id": "easyToUnderstand",
"label":"Easy to understand"
},{
"type": "thumb-up",
"id": "solvedMyProblem",
"label":"Solved my problem"
},{
"type": "thumb-up",
"id": "otherUp",
"label":"Other"
}]