PPI: Missing commit
[senf.git] / Socket / SocketPolicy.ct
index 533ce64..fa9ca77 100644 (file)
@@ -1,8 +1,8 @@
 // $Id$
 //
 // Copyright (C) 2006
-// Fraunhofer Institute for Open Communication Systems (FOKUS) 
-// Competence Center NETwork research (NET), St. Augustin, GERMANY 
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
@@ -27,6 +27,7 @@
 #include "SocketPolicy.ih"
 
 // Custom includes
+#include "../Utils/Exception.hh"
 
 #define prefix_
 ///////////////////////////////ct.p////////////////////////////////////////
@@ -46,7 +47,10 @@ checkBaseOf(SocketPolicyBase const & other)
         (void) dynamic_cast<BOOST_PP_CAT(SomePolicy,_) const &>(                                  \
             other.BOOST_PP_CAT(the,SomePolicy)());
 
-    BOOST_PP_SEQ_FOR_EACH( SP_CheckPolicy, , SENF_SOCKET_POLICIES )
+    try {
+        BOOST_PP_SEQ_FOR_EACH( SP_CheckPolicy, , SENF_SOCKET_POLICIES )
+    }
+    SENF_WRAP_EXC(std::bad_cast)
 
 #   undef SP_CheckPolicy
 }