~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to src/common_cpp/API/ReduceBase-inl.hh

  • Committer: Durga Rajaram
  • Date: 2014-01-14 04:39:44 UTC
  • mfrom: (663.38.24 merge)
  • mto: (698.1.1 release)
  • mto: This revision was merged to the branch mainline in revision 693.
  • Revision ID: durga@fnal.gov-20140114043944-qf0i8nksnwu74cll
candidate 0.7.6 - trunk r1026

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include <string>
21
21
#include "src/common_cpp/API/APIExceptions.hh"
22
 
#include "src/legacy/Interface/Squeal.hh"
 
22
#include "Utils/Exception.hh"
23
23
#include "src/common_cpp/Utils/CppErrorHandler.hh"
24
24
 
25
25
namespace MAUS {
40
40
    try {
41
41
      o = _process(t);
42
42
    }
43
 
    catch(Squeal& s) {
44
 
      CppErrorHandler::getInstance()->HandleSquealNoJson(s, _classname);
 
43
    catch(Exception& s) {
 
44
      CppErrorHandler::getInstance()->HandleExceptionNoJson(s, _classname);
45
45
    }
46
46
    catch(std::exception& e) {
47
47
      CppErrorHandler::getInstance()->HandleStdExcNoJson(e, _classname);