/////////////////////////////////////////////////////////////////////
| 461 | |
| 462 | ////////////////////////////////////////////////////////////////////////// |
| 463 | int CScriptObjectSystem::Error(IFunctionHandler *pH) |
| 464 | { |
| 465 | CHECK_PARAMETERS(1); |
| 466 | |
| 467 | const char *sParam = ""; |
| 468 | if (pH->GetParam(1,sParam)) |
| 469 | { |
| 470 | m_pSystem->Warning( VALIDATOR_MODULE_SCRIPTSYSTEM,VALIDATOR_ERROR,0,NULL,"%s",sParam ); |
| 471 | } |
| 472 | |
| 473 | return (pH->EndFunction()); |
| 474 | } |
| 475 | |
| 476 | /*! Clear the console |
| 477 | */ |
nothing calls this directly
no test coverage detected