3 This file is part of libmspcore
4 Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
16 Exception::Exception(const string &w_):
19 #ifdef WITH_EXCEPTION_BACKTRACE
20 bt=Debug::Backtrace::create();
24 SystemError::SystemError(const string &w_, int e):
25 Exception(build_what(w_, e)),
29 KeyError::KeyError(const string &w_, const string &k):
30 Exception(w_+" ("+k+")"),
34 string SystemError::build_what(const string &w, int e)