Overture  Version 25
AbstractException.h
Go to the documentation of this file.
1 #ifndef __ABSTRACT_EXCEPTION__
2 #define __ABSTRACT_EXCEPTION__
3 
4 
5 // Abstract Base class for all (my) exceptions
6 // define the generic behavior for all exceptions
7 
9 {
10 
11 public:
12  // instances of this method should send output to cerr
13  virtual void debug_print() const { };
14 
15 };
16 
17 #endif