2008-12-03から1日間の記事一覧

nested_exception のサンプル

例えば自前の XML 読み込みクラスみたいな複雑な作る場合なんかはいろんな(out of range とか null reference、他にも exception を継承していない例外とか、他社ベンダのライブラリを使うならそれが提供している例外とか)例外が出る可能性があるので、そ…

nested_exception

id:faith_and_brave:20081203 の InnerException を、nested_exception で書いてみた。 class my_nested : public exception { private: const char* what_; public: my_nested(const char* what) : what_(what) { } virtual const char* what() const throw…