comparison Plugins/Samples/Common/OrthancPluginCppWrapper.h @ 2239:15637de71fee

fix
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 16 Dec 2016 17:01:33 +0100
parents a78d15509a1c
children a3a65de1840f
comparison
equal deleted inserted replaced
2238:4f0a9a61d905 2239:15637de71fee
445 try 445 try
446 { 446 {
447 Callback(output, url, request); 447 Callback(output, url, request);
448 return OrthancPluginErrorCode_Success; 448 return OrthancPluginErrorCode_Success;
449 } 449 }
450 catch (ORTHANC_PLUGINS_GET_EXCEPTION_CLASS& e) 450 catch (ORTHANC_PLUGINS_EXCEPTION_CLASS& e)
451 { 451 {
452 return static_cast<OrthancPluginErrorCode>(e.GetErrorCode()); 452 return static_cast<OrthancPluginErrorCode>(e.GetErrorCode());
453 } 453 }
454 catch (boost::bad_lexical_cast&) 454 catch (boost::bad_lexical_cast&)
455 { 455 {