Yoba Perl
perl_exception.cpp
1 #include "yobaperl/perl_exception.hpp"
2 
3 namespace yoba {
4 
5 
6 
7 PerlException::PerlException(int perl_id, std::string info, std::string eval_sting)
8  : _perl_id(perl_id),
9  _eval_string(eval_sting)
10 {
11  std::stringstream ss;
12 
13 #ifdef YOBAPERL_MULTIPLICITY
14  ss << "Perl #" << perl_id << ": ";
15 #endif
16 
17  ss << info;
18  _info = ss.str();
19 }
20 
21 
22 
23 const std:: string & PerlException::getInfo() const
24 {
25  return _info;
26 }
27 
29 {
30  return !_eval_string.empty();
31 }
32 
33 const std::string & PerlException::getEvalString() const
34 {
35  return _eval_string;
36 }
37 
39 {
40  return _perl_id;
41 }
42 
43 
44 
45 const char * PerlException::what() const noexcept
46 {
47  return _info.c_str();
48 }
49 
50 
51 
52 } // namespace yoba
Definition: array.cpp:5
const std::string & getInfo() const
Error string.
int getPerlId() const
Perl object id.
const std::string & getEvalString() const
Code string passed to Perl::eval()
bool isEval() const
Check if exception thrown in Perl::eval()