d09f6b3016
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
12 lines
279 B
C++
12 lines
279 B
C++
#ifndef __pbd_failed_constructor_h__
|
|
#define __pbd_failed_constructor_h__
|
|
|
|
#include <exception>
|
|
|
|
class failed_constructor : public std::exception {
|
|
public:
|
|
virtual const char *what() const throw() { return "failed constructor"; }
|
|
};
|
|
|
|
#endif /* __pbd_failed_constructor_h__ */
|