LIBEUNOMIA
|
例外 [詳解]
#include <exception.h>
公開メンバ関数 | |
Exception () | |
デフォルト構築子 | |
Exception (const std::string &m) | |
構築子 | |
Exception (const std::string &f, const std::string &m) | |
構築子 | |
Exception (const std::string &c, const std::string &f, const std::string &m) | |
構築子 | |
例外
std::runtime_errorを繼承し、定型のwhat_argを保持する例外クラス。
|
inline |
デフォルト構築子
what_argに"Exception"を與へて初期化する。
|
inlineexplicit |
構築子
what_argを與へて初期化する。
m | メッセージ文字列 |
構築子
what_argを「函數名(): メッセージ」の書式で初期化する。
f | 函數名 |
m | メッセージ |
|
inline |
構築子
what_argを「クラス名::函數名(): メッセージ」の書式で初期化する。
c | クラス名 |
f | 函數名 |
m | メッセージ |