Exemplo n.º 1
0
void HTTPSession::setException(const Poco::Exception& exc)
{
	delete _pException;
	_pException = exc.clone();
}
Exemplo n.º 2
0
void AddonManager::onDirectoryWatcherError(const Poco::Exception& exc)
{
    ofLogError("AddonManager::onDirectoryWatcherError") << exc.displayText();
}
Exemplo n.º 3
0
void Serializer::serializeFaultMessage(const std::string& name, Poco::Exception& exc)
{
	_pException = exc.clone();
}
Exemplo n.º 4
0
//------------------------------------------------------------------------------
void ofApp::onCalendarWatcherError(const Poco::Exception& exception)
{
    ofSendMessage("ERROR: " + exception.displayText());
}
Exemplo n.º 5
0
BundleEvent::BundleEvent(Bundle* pBundle, const Poco::Exception& exception):
	_pBundle(pBundle, true),
	_what(EV_BUNDLE_FAILED),
	_pException(exception.clone())
{
}