Added public when inheriting from std::exception (IPhreeqcStop and PhreeqcRMStop).

Rewrote dump to parallelized the dump_raw part.

More zlib changes for PhreeqcRM project.

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@10107 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2015-08-19 00:32:49 +00:00
parent 4a4d22f675
commit b20b71f383

View File

@ -31,8 +31,11 @@ class SelectedOutput;
* @brief This class is derived from std::exception and is thrown
* when an unrecoverable error has occured.
*/
class IPQ_DLL_EXPORT IPhreeqcStop : std::exception
class IPQ_DLL_EXPORT IPhreeqcStop : public std::exception
{
public:
const char *what() const {return "Failure in IPhreeqc\n";}
};
/**