//	////////////////////////////////////////////////////////////////////////////
void OdbcExceptionStatus::Rethrow(const char *except_string) const
{
	OdbcExceptionStatus tmp_except(*this);

	tmp_except.SetWhat(except_string);

	throw tmp_except;
}
Exemple #2
0
//	////////////////////////////////////////////////////////////////////////////
void RvException::Rethrow(const char *except_string) const
{
	RvException tmp_except(*this);

	tmp_except.SetWhat(except_string);

	throw tmp_except;
}
Exemple #3
0
	virtual void Rethrow(const char *except_string = NULL) const {
		LSFExceptionStatus tmp_except(*this);
		tmp_except.SetWhat(except_string);
		throw tmp_except;
	}