All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
hashCollision.h
Go to the documentation of this file.
1 /* hashCollision.h
2  */
3 #ifndef _HASHCOLLISION_H
4 #define _HASHCOLLISION_H
5 
6 #include <stdexcept>
7 
8 namespace osl
9 {
10  namespace hash
11  {
15  struct HashCollision : std::runtime_error
16  {
17  HashCollision() : std::runtime_error("hash collision")
18  {
19  }
20  };
21  } // namespace hash
22  using hash::HashCollision;
23 } // namespace osl
24 
25 
26 #endif /* _HASHCOLLISION_H */
27 // ;;; Local Variables:
28 // ;;; mode:c++
29 // ;;; c-basic-offset:2
30 // ;;; End: