qt/MainForm.cpp: Unneeded variable removed (take it easy ;-) - furthermore it made...
[mines3d.git] / exceptions / GeneralException.cpp
blob5d2512e93865909cc61304ba3732047007c690fa
1 /*
2 * File: GeneralException.cpp
3 * Author: Petr Kubiznak
4 */
6 #include "GeneralException.h"
8 GeneralException::GeneralException(int code, string desc) {
9 this->errCode = code;
10 this->errText = desc;
13 GeneralException::~GeneralException() {