File: eca-error.h

package info (click to toggle)
ecasound 2.9.1-7
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 5,652 kB
  • ctags: 6,128
  • sloc: cpp: 39,403; sh: 10,512; ansic: 2,040; lisp: 1,918; makefile: 909; python: 611; ruby: 202
file content (46 lines) | stat: -rw-r--r-- 1,156 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef INCLUDED_ECA_ERROR_H
#define INCLUDED_ECA_ERROR_H

#include <string>

using std::string;

/**
 * A general exception class for error reporting.
 */
class ECA_ERROR {

public:
  
  // ------------------------------
  // error type / suggested action:
  // ------------------------------
  // stop = a critical error (can't allocate memory, etc), program 
  //        should exit at once
  // retry = action failed (badly formatted data, invalid user input,
  //         etc), no need to stop the whole program
  // notice = action succeeded but something unusual occured

  enum Action { stop, retry, notice };
 
private:
  std::string esection_rep;
  std::string eerrormsg_rep;
  Action eaction_rep;

public:

  const std::string& error_section(void) const { return(esection_rep); }
  const std::string& error_message(void) const { return(eerrormsg_rep); }
  const Action& error_action(void) const { return(eaction_rep); }
  
  ECA_ERROR(const std::string& section, 
	    const std::string& errormsg, 
	    const Action action = ECA_ERROR::retry) {
    esection_rep = section;
    eerrormsg_rep = errormsg;
    eaction_rep = action;
  }
};

#endif