From 6f2d28d08abbfb7e496996509264bc7c4950e4e4 Mon Sep 17 00:00:00 2001
From: Liu Ming <miliu@statoil.com>
Date: Fri, 16 May 2014 15:02:49 +0800
Subject: [PATCH] Throw information for Petsc.

---
 opm/core/linalg/LinearSolverFactory.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opm/core/linalg/LinearSolverFactory.cpp b/opm/core/linalg/LinearSolverFactory.cpp
index 923feec69..034123a22 100644
--- a/opm/core/linalg/LinearSolverFactory.cpp
+++ b/opm/core/linalg/LinearSolverFactory.cpp
@@ -49,7 +49,7 @@ namespace Opm
 #else
         solver_.reset(new LinearSolverPetsc);
 
-        OPM_THROW(std::runtime_error, "No linear solver available, you must have UMFPACK or dune-istl installed to use LinearSolverFactory.");
+        OPM_THROW(std::runtime_error, "No linear solver available, you must have UMFPACK , dune-istl or Petsc installed to use LinearSolverFactory.");
 #endif
     }