Go to the first, previous, next, last section, table of contents.


標準のエラー

以下は、概念ごとにまとめた標準Emacsのエラーシンボルの完全な一覧です。 一覧には、各シンボルの(シンボルの属性error-messageにある)メッセージと そのようなエラーが生起する場面の記述への相互参照を示しました。

各エラーシンボルには、属性error-conditionsがあり、 これはシンボルのリストです。 通常、このリストは、エラーシンボルそのものとシンボルerrorを含みます。 しばしば、追加のシンボルも含みます。 それらは中間的な分類種別であり、errorより細分化したものですが、 エラーシンボルそのものよりは大分類です。 たとえば、ファイル参照に関するすべてのエラーには、 条件file-errorが入っています。 以下で、特定のエラーシンボルにおいて追加のシンボルを言及していないときには、 そのエラーには追加シンボルがないことを意味します。

特別な例外ですが、エラーシンボルquitには 条件errorがありません。 これは、中断(quit)をエラーとみなさないからです。

エラーが生起する場面とその処理方法については、See section エラー

シンボル
文字列; 参照
error
"error"
see section エラー
quit
"Quit"
see section 中断
args-out-of-range
"Args out of range"
see section シーケンス、配列、ベクトル
arith-error
"Arithmetic error"
section /%を参照。
beginning-of-buffer
"Beginning of buffer"
see section 移動
buffer-read-only
"Buffer is read-only"
see section 読み出し専用バッファ
cyclic-function-indirection
"Symbol's chain of function indirections\
contains a loop"

see section シンボルの関数間接
end-of-buffer
"End of buffer"
see section 移動
end-of-file
"End of file during parsing"
これはファイル入出力ではなくLispリーダに関連することなので、 file-errorではないことに注意。
see section 入力関数
file-already-exists
これはfile-error
see section ファイルへの書き出し
file-date-error
これはfile-errorの小分類。 copy-fileで、 出力ファイルの最終更新日付の設定に失敗すると生起する。
see section ファイルの名前と属性の変更
file-error
このエラーとその小分類にはエラー文字列がない。 エラー条件file-errorがあると、 データ項目のみからエラーメッセージを作るからである。
see section ファイル
file-locked
これはfile-error
see section ファイルロック
file-supersession
これはfile-error
see section 更新時刻の比較
invalid-function
"Invalid function"
see section リストフォームの分類
invalid-read-syntax
"Invalid read syntax"
see section 入力関数
invalid-regexp
"Invalid regexp"
see section 正規表現
mark-inactive
"Mark inactive"
see section マーク
no-catch
"No catch for tag"
see section 明示的な非ローカル脱出: catchthrow
scan-error
"Scan error"
これは、構文解析関数が不正な構文や対応していない括弧を みつけると生起する。
section 式単位の移動、および、see section 釣り合った式の解析
search-failed
"Search failed"
see section 探索と一致
setting-constant
"Attempt to set a constant symbol"
シンボルnilt、および、 `:'で始まる任意のシンボルは変更できない。
see section 変更不可能な変数
undefined-color
"Undefined color"
see section 表示色名
void-function
"Symbol's function definition is void"
see section 関数セルの内容の参照
void-variable
"Symbol's value as variable is void"
see section 変数値の参照
wrong-number-of-arguments
"Wrong number of arguments"
see section リストフォームの分類
wrong-type-argument
"Wrong type argument"
see section 型述語

arith-errorの特別な場合に分類された以下の種類のエラーは、 数学関数を不正に使ったときに特定のシステムで生起します。

domain-error
"Arithmetic domain error"
see section 標準数学関数
overflow-error
"Arithmetic overflow error"
see section 標準数学関数
range-error
"Arithmetic range error"
see section 標準数学関数
singularity-error
"Arithmetic singularity error"
see section 標準数学関数
underflow-error
"Arithmetic underflow error"
see section 標準数学関数


Go to the first, previous, next, last section, table of contents.