19.1.5. email.errors
: 例外及び欠陥クラス¶
ソースコード: Lib/email/errors.py
email.errors
モジュールでは、以下の例外クラスが定義されています:
-
exception
email.errors.
MessageError
¶ これは
email
パッケージが送出しうるすべての例外の基底クラスです。これは標準のException
クラスから派生しており、追加のメソッドは定義されていません。
-
exception
email.errors.
MessageParseError
¶ This is the base class for exceptions raised by the
Parser
class. It is derived fromMessageError
. This class is also used internally by the parser used byheaderregistry
.
-
exception
email.errors.
HeaderParseError
¶ Raised under some error conditions when parsing the RFC 5322 headers of a message, this class is derived from
MessageParseError
. Theset_boundary()
method will raise this error if the content type is unknown when the method is called.Header
may raise this error for certain base64 decoding errors, and when an attempt is made to create a header that appears to contain an embedded header (that is, there is what is supposed to be a continuation line that has no leading whitespace and looks like a header).
-
exception
email.errors.
BoundaryError
¶ Deprecated and no longer used.
-
exception
email.errors.
MultipartConversionError
¶ この例外は、
Message
オブジェクトにadd_payload()
メソッドでペイロードを追加したが、そのペイロードがすでにスカラー値で、メッセージの Content-Type メインタイプが multipart でないか見付からない場合に送出されます。MultipartConversionError
はMessageError
と組み込みのTypeError
を多重継承しています。Message.add_payload()
は非推奨なので、実際のところこの例外が送出されることはほとんどありません。 しかしながら、attach()
メソッドをMIMENonMultipart
から派生したインスタンス (たとえばMIMEImage
) に対して呼んだ場合にも送出されることがあります。
Here is the list of the defects that the FeedParser
can find while parsing messages. Note that the defects are added to the message
where the problem was found, so for example, if a message nested inside a
multipart/alternative had a malformed header, that nested message
object would have a defect, but the containing messages would not.
All defect classes are subclassed from email.errors.MessageDefect
.
NoBoundaryInMultipartDefect
– メッセージが multipart だと宣言されているのに、 boundary パラメータがありません。StartBoundaryNotFoundDefect
– Content-Type ヘッダで宣言された開始境界がありません。CloseBoundaryNotFoundDefect
– 開始境界はあるが対応する終了境界がありません。バージョン 3.3 で追加.
FirstHeaderLineIsContinuationDefect
– メッセージの最初のヘッダ行が継続行です。MisplacedEnvelopeHeaderDefect
– ヘッダブロックの途中に "Unix From" ヘッダがあります。MissingHeaderBodySeparatorDefect
- 先頭に空白はないが ':' がないヘッダの解析中に行が見付かりました。その行を本体の最初の行とみなして解析を続けます。バージョン 3.3 で追加.
MalformedHeaderDefect
– ヘッダにコロンがありません、あるいはそれ以外の不正な形式です。バージョン 3.3 で撤廃: この欠陥が使われていないPythonバージョンがいくつかあります。
MultipartInvariantViolationDefect
– メッセージが multipart だと宣言されているのに、サブパートが存在しません。 メッセージがこの欠陥を持つ場合、内容の型が multipart と宣言されていてもis_multipart()
メソッドは偽を返すことがあるので注意してください。InvalidBase64PaddingDefect
– When decoding a block of base64 encoded bytes, the padding was not correct. Enough padding is added to perform the decode, but the resulting decoded bytes may be invalid.InvalidBase64CharactersDefect
– When decoding a block of base64 encoded bytes, characters outside the base64 alphabet were encountered. The characters are ignored, but the resulting decoded bytes may be invalid.