diff --git a/GeoModelCore/GeoModelKernel/src/GeoPcon.cxx b/GeoModelCore/GeoModelKernel/src/GeoPcon.cxx
index f294264bcc0ecb10a7541b0ae73c18b1a3ae1056..e3aa845daa1c3f0480632f7b9b6f3d67638ccafa 100755
--- a/GeoModelCore/GeoModelKernel/src/GeoPcon.cxx
+++ b/GeoModelCore/GeoModelKernel/src/GeoPcon.cxx
@@ -93,6 +93,16 @@ bool GeoPcon::contains (double x, double y, double z) const
 
 void GeoPcon::addPlane (double ZPlane, double RMinPlane, double RMaxPlane)
 {
+  // Basic sanity checks
+  if(RMinPlane < 0.
+     || RMaxPlane <= 0.
+     || RMaxPlane < RMinPlane) {
+    THROW_EXCEPTION("GeoPcon::addPlane() wrong arguments! ("
+		    << ZPlane << ","
+		    << RMinPlane << ","
+		    << RMaxPlane << ")");
+  }
+
   m_zPlane.push_back (ZPlane);
   m_rMinPlane.push_back (RMinPlane);
   m_rMaxPlane.push_back (RMaxPlane);
@@ -100,5 +110,8 @@ void GeoPcon::addPlane (double ZPlane, double RMinPlane, double RMaxPlane)
 
 void GeoPcon::exec (GeoShapeAction *action) const
 {
+  if (!isValid ())
+    THROW_EXCEPTION("Requested to execute action for incomplete polycone");
+
   action->handlePcon(this);
 }
diff --git a/GeoModelCore/GeoModelKernel/src/GeoPgon.cxx b/GeoModelCore/GeoModelKernel/src/GeoPgon.cxx
index 1a55a617ec16bc873408dbe66a0fc1750cb3d7e3..ed7ccd82746bda9153de7dfd65885dfd8bc057a9 100755
--- a/GeoModelCore/GeoModelKernel/src/GeoPgon.cxx
+++ b/GeoModelCore/GeoModelKernel/src/GeoPgon.cxx
@@ -148,6 +148,16 @@ bool GeoPgon::contains (double x, double y, double z) const
 
 void GeoPgon::addPlane (double ZPlane, double RMinPlane, double RMaxPlane)
 {
+  // Basic sanity checks
+  if(RMinPlane < 0.
+     || RMaxPlane <= 0.
+     || RMaxPlane < RMinPlane) {
+    THROW_EXCEPTION("GeoPcon::addPlane() wrong arguments! ("
+		    << ZPlane << ","
+		    << RMinPlane << ","
+		    << RMaxPlane << ")");
+  }
+
   m_zPlane.push_back (ZPlane);
   m_rMinPlane.push_back (RMinPlane);
   m_rMaxPlane.push_back (RMaxPlane);
@@ -155,5 +165,8 @@ void GeoPgon::addPlane (double ZPlane, double RMinPlane, double RMaxPlane)
 
 void GeoPgon::exec (GeoShapeAction *action) const
 {
+  if (!isValid ())
+    THROW_EXCEPTION("Requested to execute action for incomplete polygon");
+
   action->handlePgon(this);
 }