Phasor  01.00.10.059
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MyException.h
Go to the documentation of this file.
1 #pragma once
2 
3 class CFailedCtor : public std::exception
4 {
5 public:
6  CFailedCtor() : exception() {}
7  CFailedCtor(const char* e) : exception(e) {}
8  virtual ~CFailedCtor() {}
9 };