MCPcopy Create free account
hub / github.com/bgrimstad/splinter / Exception

Class Exception

include/definitions.h:45–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43typedef Eigen::SparseMatrix<double> SparseMatrix; // declares a column-major sparse matrix type of double
44
45class Exception : public std::exception
46{
47private:
48 std::string __what;
49
50public:
51
52 Exception(const std::string& what)
53 : __what(what)
54 {
55 }
56
57 const char* what() const throw()
58 {
59 return this->__what.c_str();
60 }
61};
62
63} // namespace SPLINTER
64

Callers 15

__init__Method · 0.85
add_sampleMethod · 0.85
loadFunction · 0.85
_get_handleFunction · 0.85
_callFunction · 0.85
BSplineBasisMethod · 0.85
reduceSupportMethod · 0.85
operator<Method · 0.85
distFunction · 0.85
evalHessianMethod · 0.85
evalBasisMethod · 0.85
evalBasisJacobianMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected