diff --git a/src/scheme/HybridHLLRusanovEulerianCompositeSolver_v2.cpp b/src/scheme/HybridHLLRusanovEulerianCompositeSolver_v2.cpp
index e0e57a6856ccd912b134b1ecd7a571b4877324c3..86fcb885eaa21f412f6c735e88ba7351134140fc 100644
--- a/src/scheme/HybridHLLRusanovEulerianCompositeSolver_v2.cpp
+++ b/src/scheme/HybridHLLRusanovEulerianCompositeSolver_v2.cpp
@@ -2034,7 +2034,7 @@ hybridHLLRusanovEulerianCompositeSolver_v2(
         using Rd                          = TinyVector<Dimension>;
 
         if constexpr (Dimension == 1) {
-          throw NormalError("RusanovEulerianCompositeSolver v2 is not available in 1D");
+          throw NormalError("This hybrid solver is not available in 1D");
         } else {
           if constexpr (is_polygonal_mesh_v<MeshType>) {
             return HybridHLLRusanovEulerianCompositeSolver_v2<MeshType>{}
@@ -2042,7 +2042,7 @@ hybridHLLRusanovEulerianCompositeSolver_v2(
                      E_v->get<DiscreteFunctionP0<const double>>(), gamma, c_v->get<DiscreteFunctionP0<const double>>(),
                      p_v->get<DiscreteFunctionP0<const double>>(), bc_descriptor_list, dt, check);
           } else {
-            throw NormalError("RusanovEulerianCompositeSolver v2 is only defined on polygonal meshes");
+            throw NormalError("This hybrid solver is only defined on polygonal meshes");
           }
         }
       },
diff --git a/src/scheme/HybridHLLcRusanovEulerianCompositeSolver_v2.cpp b/src/scheme/HybridHLLcRusanovEulerianCompositeSolver_v2.cpp
index 36dae3df541f5d10f36839a780745f610bc7dea5..c76bd5ce7fb1b4b298e358f7472ed3163a9927cd 100644
--- a/src/scheme/HybridHLLcRusanovEulerianCompositeSolver_v2.cpp
+++ b/src/scheme/HybridHLLcRusanovEulerianCompositeSolver_v2.cpp
@@ -2106,7 +2106,7 @@ hybridHLLcRusanovEulerianCompositeSolver_v2(
         using Rd                          = TinyVector<Dimension>;
 
         if constexpr (Dimension == 1) {
-          throw NormalError("Hybrid HLLc/Rusanov EulerianCompositeSolver v2 is not available in 1D");
+          throw NormalError("This hybrid solver is not available in 1D");
         } else {
           if constexpr (is_polygonal_mesh_v<MeshType>) {
             return HybridHLLcRusanovEulerianCompositeSolver_v2<MeshType>{}
@@ -2114,7 +2114,7 @@ hybridHLLcRusanovEulerianCompositeSolver_v2(
                      E_v->get<DiscreteFunctionP0<const double>>(), gamma, c_v->get<DiscreteFunctionP0<const double>>(),
                      p_v->get<DiscreteFunctionP0<const double>>(), bc_descriptor_list, dt, check);
           } else {
-            throw NormalError("Hybrid HLLc/Rusanov EulerianCompositeSolver v2 is only defined on polygonal meshes");
+            throw NormalError("This hybrid solver is only defined on polygonal meshes");
           }
         }
       },
diff --git a/src/scheme/HybridRoeRusanovViscousFormEulerianCompositeSolver_v2.cpp b/src/scheme/HybridRoeRusanovViscousFormEulerianCompositeSolver_v2.cpp
index 92f258ff2d2abee68a2778efd094ea780f334d6b..ebf9e32b257520e9bd2b377a7bef5e629a3fc70e 100644
--- a/src/scheme/HybridRoeRusanovViscousFormEulerianCompositeSolver_v2.cpp
+++ b/src/scheme/HybridRoeRusanovViscousFormEulerianCompositeSolver_v2.cpp
@@ -2482,7 +2482,7 @@ hybridRoeRusanovViscousFormEulerianCompositeSolver_v2(
         using Rd                          = TinyVector<Dimension>;
 
         if constexpr (Dimension == 1) {
-          throw NormalError("RoeViscousFormEulerianCompositeSolver v2 is not available in 1D");
+          throw NormalError("This hybrid solver is not available in 1D");
         } else {
           if constexpr (is_polygonal_mesh_v<MeshType>) {
             return HybridRoeRusanovViscousFormEulerianCompositeSolver_v2<MeshType>{}
@@ -2491,7 +2491,7 @@ hybridRoeRusanovViscousFormEulerianCompositeSolver_v2(
                      p_v->get<DiscreteFunctionP0<const double>>(),   // degree,
                      bc_descriptor_list, dt, check);
           } else {
-            throw NormalError("RoeViscousFormEulerianCompositeSolver v2 is only defined on polygonal meshes");
+            throw NormalError("This hybrid solver is only defined on polygonal meshes");
           }
         }
       },
diff --git a/src/scheme/HybridRusanovRoeViscousFormEulerianCompositeSolver_v2.cpp b/src/scheme/HybridRusanovRoeViscousFormEulerianCompositeSolver_v2.cpp
index 3a01ea6cc4ccdf44183ba16f11700fc9ca24c21b..90cf863cc91f46cab2e936ccb75c18c26303acba 100644
--- a/src/scheme/HybridRusanovRoeViscousFormEulerianCompositeSolver_v2.cpp
+++ b/src/scheme/HybridRusanovRoeViscousFormEulerianCompositeSolver_v2.cpp
@@ -2435,7 +2435,7 @@ hybridRusanovRoeViscousFormEulerianCompositeSolver_v2(
         using Rd                          = TinyVector<Dimension>;
 
         if constexpr (Dimension == 1) {
-          throw NormalError("RusanovEulerianCompositeSolver v2 is not available in 1D");
+          throw NormalError("This hybrid solver is not available in 1D");
         } else {
           if constexpr (is_polygonal_mesh_v<MeshType>) {
             return HybridRusanovRoeViscousFormEulerianCompositeSolver_v2<MeshType>{}
@@ -2443,7 +2443,7 @@ hybridRusanovRoeViscousFormEulerianCompositeSolver_v2(
                      E_v->get<DiscreteFunctionP0<const double>>(), gamma, c_v->get<DiscreteFunctionP0<const double>>(),
                      p_v->get<DiscreteFunctionP0<const double>>(), bc_descriptor_list, dt, check);
           } else {
-            throw NormalError("RusanovEulerianCompositeSolver v2 is only defined on polygonal meshes");
+            throw NormalError("This hybrid solver is only defined on polygonal meshes");
           }
         }
       },