Commit 66a4fc2d authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed typos in SolverStarter

parent 768112f6
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -305,12 +305,12 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem,
      }
      catch ( const std::exception& e ) {
         std::cerr << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl;
         logFile   << "Setting up The solver failed due to a C++ exception with description: " << e.what() << std::endl;
         logFile   << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl;
         return false;
      }
      catch (...) {
         std::cerr << "Setting up the solver failed due to an unknown C++ exception." << std::endl;
         logFile   << "Setting up The solver failed due to an unknown C++ exception." << std::endl;
         logFile   << "Setting up the solver failed due to an unknown C++ exception." << std::endl;
         throw;
      }
   }