~mbogomilov/maus/devel3

« back to all changes in this revision

Viewing changes to src/common_cpp/Simulation/MAUSPhysicsList.cc

  • Committer: Durga Rajaram
  • Date: 2014-01-14 07:07:02 UTC
  • mfrom: (659.1.80 relcand)
  • Revision ID: durga@fnal.gov-20140114070702-2l1fuj1w6rraw7xe
Tags: MAUS-v0.7.6
MAUS-v0.7.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
        mpl->Setup();
78
78
        return mpl;
79
79
    }
80
 
    catch(Squeal squee) {
 
80
    catch(Exception exc) {
81
81
        delete mpl;
82
 
        throw squee;
 
82
        throw exc;
83
83
    }
84
84
  } else {
85
 
    throw(Squeal(Squeal::recoverable,
 
85
    throw(Exception(Exception::recoverable,
86
86
        "Failed to recognise physics list model "+physModel,
87
87
        "MAUSPhysicsList::GetMAUSPhysicsList()")
88
88
    );