3 This file is part of libmspcore
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
14 Exception::Exception(const string &w_):
17 #ifdef WITH_EXCEPTION_BACKTRACE
18 bt=Debug::Backtrace::create();
22 SystemError::SystemError(const string &w_, int e):
23 Exception(build_what(w_, e)),
27 KeyError::KeyError(const string &w_, const string &k):
28 Exception(w_+" ("+k+")"),
32 string SystemError::build_what(const string &w, int e)