| S3FC project page | S3FC home page |
#include <s3_exception.h>
Inheritance diagram for s3_generic_exception:


Public Methods | |
| s3_generic_exception () | |
| Construct default generic exception. More... | |
| s3_generic_exception (const std::string &n_where, const std::string &n_what) | |
Construct generic exception from n_where with error string n_what. More... | |
It can be used as follows:
if (!ok)
{
throw s3_expection("myFunction","It happend!");
}
try
{
...
}
catch(const s3_exception& e)
{
cout << e.what();
{
myFunction: [It happend!]
Definition at line 119 of file s3_exception.h.
|
|
Construct default generic exception.
Definition at line 57 of file s3_exception.cc. |
|
||||||||||||
|
Construct generic exception from
The error string reported by this instance contains some combination of Definition at line 63 of file s3_exception.cc. References s3_exception::err_string. |
| Send comments to: s3fc@stonethree.com |
|