Date: Friday, February 9, 2007 @ 14:43:32
  Author: marc
    Path: /cvsroot/carob/carob/src

Modified: SQLDataSerialization.cpp (1.43 -> 1.44)

More precise exception messages in getDeserializer()


--------------------------+
 SQLDataSerialization.cpp |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletion(-)


Index: carob/src/SQLDataSerialization.cpp
diff -u carob/src/SQLDataSerialization.cpp:1.43 
carob/src/SQLDataSerialization.cpp:1.44
--- carob/src/SQLDataSerialization.cpp:1.43     Thu Feb  8 17:59:23 2007
+++ carob/src/SQLDataSerialization.cpp  Fri Feb  9 14:43:32 2007
@@ -357,9 +357,13 @@
       return undefinedDeserializer;
     break;
     case TT_BLOB:
+      throw NotImplementedException(L"Blob deserialization unsupported yet");
+    break;
     case TT_JAVA_SERIALIZABLE:
+      throw NotImplementedException(L"Unsupported deserialization of java 
objects");
+    break;
     default:
-      throw NotImplementedException(L"Deserialization for unsupported type");
+      throw NotImplementedException(L"Failed to deserialize unknown type");
   }
 }
 

_______________________________________________
Carob-commits mailing list
[email protected]
https://forge.continuent.org/mailman/listinfo/carob-commits

Reply via email to