]> SALOME platform Git repositories - modules/kernel.git/blob - src/HDFPersist/HDFexception.hxx
Salome HOME
be0f6095be8aa604f1307ce95ca83b85d9addcc0
[modules/kernel.git] / src / HDFPersist / HDFexception.hxx
1 /* Exception */
2 #include <iostream.h>
3
4 class HDFexception
5 {
6 public :
7   HDFexception(const char *message) { 
8     cerr << message << endl;
9   }
10 };