repo.or.cz
/
mines3d.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
qt/MainForm.cpp: Unneeded variable removed (take it easy ;-) - furthermore it made...
[mines3d.git]
/
exceptions
/
GeneralException.cpp
blob
5d2512e93865909cc61304ba3732047007c690fa
1
/*
2
* File: GeneralException.cpp
3
* Author: Petr Kubiznak
4
*/
5
6
#include
"GeneralException.h"
7
8
GeneralException
::
GeneralException
(
int
code
,
string desc
) {
9
this
->
errCode
=
code
;
10
this
->
errText
=
desc
;
11
}
12
13
GeneralException
::~
GeneralException
() {
14
}
15