Example #1
0
bool ExceptionTst::run(char* arg1, char* arg2) {
	try{
		throwAccessException();
	}
	catch(Exception* e){
		cout << e->msg << endl;
		delete e;
	}

	try{
		throwCodingException();
	}
	catch (Exception* e){
		cout << e->msg << endl;
		delete e;
	}

	try{
		throwUnexpectedException();
	}
	catch (Exception* e){
		cout << e->msg << endl;
		delete e;
	}

	try{
		throwUnimplementedException();
	}
	catch (Exception* e){
		cout << e->msg << endl;
		delete e;
	}

	return true;
}
Example #2
0
double TriMF::defuzzify(double level)
{
	return throwUnimplementedException();
}
Example #3
0
void FuzzyMF::findVariables(std::vector<Variable>& variables)
{
	throwUnimplementedException();
}