Stan Math Library  2.10.0
reverse mode automatic differentiation
invalid_argument_vec.hpp
Go to the documentation of this file.
1 #ifndef STAN_MATH_PRIM_SCAL_ERR_INVALID_ARGUMENT_VEC_HPP
2 #define STAN_MATH_PRIM_SCAL_ERR_INVALID_ARGUMENT_VEC_HPP
3 
8 #include <sstream>
9 #include <string>
10 
11 namespace stan {
12 
13  namespace math {
14 
37  template <typename T>
38  inline void invalid_argument_vec(const char* function,
39  const char* name,
40  const T& y,
41  const size_t i,
42  const char* msg1,
43  const char* msg2) {
44  std::ostringstream vec_name_stream;
45  vec_name_stream << name
46  << "[" << stan::error_index::value + i << "]";
47  std::string vec_name(vec_name_stream.str());
48  invalid_argument(function, vec_name.c_str(),
49  stan::get(y, i), msg1, msg2);
50  }
51 
73  template <typename T>
74  inline void invalid_argument_vec(const char* function,
75  const char* name,
76  const T& y,
77  const size_t i,
78  const char* msg) {
79  invalid_argument_vec(function, name, y, i, msg, "");
80  }
81 
82  }
83 }
84 #endif
void invalid_argument(const char *function, const char *name, const T &y, const char *msg1, const char *msg2)
Throw an invalid_argument exception with a consistently formatted message.
T get(const std::vector< T > &x, size_t n)
Definition: get.hpp:10
void invalid_argument_vec(const char *function, const char *name, const T &y, const size_t i, const char *msg1, const char *msg2)
Throw an invalid argument exception with a consistently formatted message.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.