Yoba Perl
Main Page
Classes
Files
File List
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
28
bool
PerlException::isEval
()
const
29
{
30
return
!_eval_string.empty();
31
}
32
33
const
std::string &
PerlException::getEvalString
()
const
34
{
35
return
_eval_string;
36
}
37
38
int
PerlException::getPerlId
()
const
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
yoba
Definition:
array.cpp:5
yoba::PerlException::getInfo
const std::string & getInfo() const
Error string.
Definition:
perl_exception.cpp:23
yoba::PerlException::getPerlId
int getPerlId() const
Perl object id.
Definition:
perl_exception.cpp:38
yoba::PerlException::getEvalString
const std::string & getEvalString() const
Code string passed to Perl::eval()
Definition:
perl_exception.cpp:33
yoba::PerlException::isEval
bool isEval() const
Check if exception thrown in Perl::eval()
Definition:
perl_exception.cpp:28
src
perl_exception.cpp
Generated by
1.8.11