Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
error_codes.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ERROR_CODES_HPP
2
#define STAN_SERVICES_ERROR_CODES_HPP
3
4
namespace
stan
{
5
namespace
services {
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
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
stan::services::error_codes::OK
Definition:
error_codes.hpp:11
stan::services::error_codes::DATAERR
Definition:
error_codes.hpp:13
stan::services::error_codes
Definition:
error_codes.hpp:7
stan::services::error_codes::USAGE
Definition:
error_codes.hpp:12
stan::services::error_codes::NOINPUT
Definition:
error_codes.hpp:14
stan::services::error_codes::SOFTWARE
Definition:
error_codes.hpp:15
stan::services::error_codes::CONFIG
Definition:
error_codes.hpp:16
[
Stan Home Page
]
© 2011–2016, Stan Development Team.