Exemplo n.º 1
0
//	////////////////////////////////////////////////////////////////////////////
void OdbcExceptionStatus::Rethrow(const char *except_string) const
{
	OdbcExceptionStatus tmp_except(*this);

	tmp_except.SetWhat(except_string);

	throw tmp_except;
}
Exemplo n.º 2
0
//	////////////////////////////////////////////////////////////////////////////
void RvException::Rethrow(const char *except_string) const
{
	RvException tmp_except(*this);

	tmp_except.SetWhat(except_string);

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