Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
gm
error_codes.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ERROR_CODES_HPP
2
#define STAN__GM__ERROR_CODES_HPP
3
4
namespace
stan {
5
namespace
gm {
6
7
struct
error_codes
{
8
// defining error codes to follow FreeBSD sysexits conventions
9
// http://www.gsp.com/cgi-bin/man.cgi?section=3&topic=sysexits
10
enum
{
11
OK
= 0,
12
USAGE
= 64,
13
DATAERR
= 65,
14
NOINPUT
= 66,
15
SOFTWARE
= 70,
16
CONFIG
= 78
17
};
18
};
19
}
20
}
21
#endif
stan::gm::error_codes::SOFTWARE
Definition:
error_codes.hpp:15
stan::gm::error_codes::NOINPUT
Definition:
error_codes.hpp:14
stan::gm::error_codes::OK
Definition:
error_codes.hpp:11
stan::gm::error_codes
Definition:
error_codes.hpp:7
stan::gm::error_codes::USAGE
Definition:
error_codes.hpp:12
stan::gm::error_codes::DATAERR
Definition:
error_codes.hpp:13
stan::gm::error_codes::CONFIG
Definition:
error_codes.hpp:16
[
Stan Home Page
]
© 2011–2014, Stan Development Team.