|
Rcpp Version 0.9.10
|

Go to the source code of this file.
Classes | |
| class | Rcpp::exception |
| class | Rcpp::no_such_env |
Namespaces | |
| namespace | Rcpp |
Rcpp API. | |
Defines | |
| #define | RCPP_EXCEPTION_CLASS(__CLASS__, __WHAT__) |
| #define | RCPP_SIMPLE_EXCEPTION_CLASS(__CLASS__, __MESSAGE__) |
Functions | |
| static std::string | Rcpp::toString (const int i) |
| #define RCPP_EXCEPTION_CLASS | ( | __CLASS__, | |
| __WHAT__ | |||
| ) |
class __CLASS__ : public std::exception{ \ public: \ __CLASS__( const std::string& message ) throw() : message( __WHAT__ ){} ; \ virtual ~__CLASS__() throw(){} ; \ virtual const char* what() const throw() ; \ private: \ std::string message ; \ } ;
Definition at line 54 of file exceptions.h.
| #define RCPP_SIMPLE_EXCEPTION_CLASS | ( | __CLASS__, | |
| __MESSAGE__ | |||
| ) |
class __CLASS__ : public std::exception{ \ public: \ __CLASS__() throw() {} ; \ virtual ~__CLASS__() throw(){} ; \ virtual const char* what() const throw() ; \ } ;
Definition at line 64 of file exceptions.h.