From 27a5d9a5af1e056397cf176213830864ecce622a Mon Sep 17 00:00:00 2001 From: Kilian Weishaupt <kilian.weishaupt@iws.uni-stuttgart.de> Date: Tue, 3 Mar 2015 14:33:18 +0000 Subject: [PATCH] Removed try and catch from 2p2c/injectionproblem.hh Reviewed by Gabriele and Johannes git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@14324 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- test/implicit/2p2c/injectionproblem.hh | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/test/implicit/2p2c/injectionproblem.hh b/test/implicit/2p2c/injectionproblem.hh index 67fa03f2d9..96d2a2af2c 100644 --- a/test/implicit/2p2c/injectionproblem.hh +++ b/test/implicit/2p2c/injectionproblem.hh @@ -143,8 +143,6 @@ public: const GridView &gridView) : ParentType(timeManager, GridCreator::grid().leafGridView()) { - try - { nTemperature_ = GET_RUNTIME_PARAM(TypeTag, int, Problem.NTemperature); nPressure_ = GET_RUNTIME_PARAM(TypeTag, int, Problem.NPressure); pressureLow_ = GET_RUNTIME_PARAM(TypeTag, Scalar, Problem.PressureLow); @@ -154,15 +152,6 @@ public: temperature_ = GET_RUNTIME_PARAM(TypeTag, Scalar, Problem.InitialTemperature); depthBOR_ = GET_RUNTIME_PARAM(TypeTag, Scalar, Problem.DepthBOR); name_ = GET_RUNTIME_PARAM(TypeTag, std::string, Problem.Name); - } - catch (Dumux::ParameterException &e) { - std::cerr << e << ". Abort!\n"; - exit(1) ; - } - catch (...) { - std::cerr << "Unknown exception thrown!\n"; - exit(1); - } /* Alternative syntax: * typedef typename GET_PROP(TypeTag, ParameterTree) ParameterTree; -- GitLab