repo.or.cz
/
tinyjs-rewrite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
formatting 90% done; encapsulated everything in the TinyJS namespace, and renamed...
[tinyjs-rewrite.git]
/
src
/
exception.cpp
blob
0e83a8ed1bedb275bee59e216e578e3c9153927a
1
2
#include
"private.h"
3
4
namespace
TinyJS
5
{
6
RuntimeError
::
RuntimeError
(
const
std
::
string
&
exceptionText
)
7
{
8
text
=
exceptionText
;
9
}
10
}