#include <Error.hh>
Public Member Functions | |
| Error () | |
| Error (const std::string &message) | |
| std::string | message () const |
Static Public Member Functions | |
| static void | set_print_errors (bool print_errors) |
Private Attributes | |
| std::string | _message |
Static Private Attributes | |
| static bool | _print_errors = true |
Definition at line 43 of file Error.hh.
|
|
Definition at line 46 of file Error.hh. 00046 {;};
|
|
|
Definition at line 47 of file Error.hh. 00047 {
00048 _message = message;
00049 if (_print_errors) std::cerr << "fastjet::Error: "<<message << std::endl;
00050 };
|
|
|
Definition at line 52 of file Error.hh. 00052 {return _message;};
|
|
|
Definition at line 54 of file Error.hh. 00054 {
00055 _print_errors = print_errors;};
|
|
|
|
|
|
|
1.4.2