This class represents an error handler manager that can be manipulated with the Data Access Interface (DAI). Usage of the class:
try
{
}
catch(const someYourException& )
{
// here you should place code to catch your own exceptions or maybe a standard exception.
}
catch(...)
{
daiErrorHandlerManager::catchFunction();
}
// Insert this part of code to places where you want use a standard exceptions handling.