2016-03-13 19:12:14 -04:00
|
|
|
#include "MKGenException.h"
|
|
|
|
|
|
|
|
namespace MKBasic {
|
|
|
|
|
|
|
|
MKGenException::MKGenException()
|
|
|
|
{
|
|
|
|
msCause = "Ouch!";
|
|
|
|
}
|
|
|
|
|
|
|
|
MKGenException::MKGenException(string cause)
|
|
|
|
{
|
|
|
|
msCause = cause;
|
|
|
|
}
|
|
|
|
|
|
|
|
string MKGenException::GetCause()
|
|
|
|
{
|
|
|
|
return msCause;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace MKBasic
|