summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/failed_constructor.h
blob: 62eb6c0d712b652114af5cd4c85aef72bbcdd8e3 (plain)
1
2
3
4
5
6
7
8
9
10
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__ */