mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
11 lines
279 B
C++
11 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__ */
|