Memosa-FVM  0.2
CException.h
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 #ifndef _CEXCEPTION_H_
6 #define _CEXCEPTION_H_
7 
8 #include <string>
9 #include <stdexcept>
10 #include <iostream>
11 #include <sstream>
12 
13 using namespace std;
14 
15 
16 class CException : public runtime_error
17 {
18 public:
19  CException(const string& what);
20  virtual ~CException() throw() {}
21 };
22 
23 #endif
virtual ~CException()
Definition: CException.h:20