mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 07:06:23 +01:00
Initial revision
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
commit
d09f6b3016
1253 changed files with 292928 additions and 0 deletions
11
libs/pbd3/pbd/failed_constructor.h
Normal file
11
libs/pbd3/pbd/failed_constructor.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
#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__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue