(Hopefully) clarify operator= and copy construction behaviour of the Property hierarc...
[ardour.git] / libs / pbd / pbd / unknown_type.h
1 #ifndef __pbd_unknown_type_h__
2 #define __pbd_unknown_type_h__
3
4 #include <exception>
5
6 class unknown_type : public std::exception {
7   public:
8         virtual const char *what() const throw() { return "unknown type"; }
9 };
10
11 #endif /* __pbd_unknown_type_h__ */