PolyBoRi
PBoRiError.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 //*****************************************************************************
34 //*****************************************************************************
35 
36 // load PolyBoRi settings
37 # include "pbori_defs.h"
38 
39 
40 #ifndef PBoRiError_h_
41 #define PBoRiError_h_
42 
43 
45 
52 class PBoRiError {
53 
54 public:
57 
60 
62  typedef PBoRiError self;
63 
65  PBoRiError(errornum_type err = CTypes::alright);
66 
68  PBoRiError(const self&);
69 
71  ~PBoRiError();
72 
74  errornum_type code() const;
75 
77  errortext_type text() const;
78 
79 protected:
81 };
82 
84 
85 #endif // of #ifndef PBoRiError_h_