|
@@ -166,7 +166,7 @@ void Gnuplot::checkSystemVariablesOpenGnuplotCommand()
|
|
|
this->nplots = 0;
|
|
|
this->valid = true;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -183,7 +183,7 @@ Gnuplot::~Gnuplot()
|
|
|
}
|
|
|
return;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -216,7 +216,7 @@ bool Gnuplot::get_program_path(const std::string pname)
|
|
|
}
|
|
|
return false;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -453,7 +453,7 @@ void Gnuplot::plot_x(vector<double> d, const std::string &title)
|
|
|
|
|
|
return;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -538,7 +538,7 @@ void Gnuplot::plot_xy(vector<double> x, vector<double> y,
|
|
|
|
|
|
return;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -614,7 +614,7 @@ void Gnuplot::plot_xyz(vector<double> x, vector<double> y, vector<double> z,
|
|
|
|
|
|
return;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|
|
@@ -694,7 +694,7 @@ void Gnuplot::plot_image(unsigned char * ucPicBuf, int iWidth, int iHeight,
|
|
|
|
|
|
return;
|
|
|
#else
|
|
|
- throw std::exception("function not yet ported for win32");
|
|
|
+ throw GnuplotException("function not yet ported for win32");
|
|
|
#endif
|
|
|
}
|
|
|
|