/* * * Copyright (C) 2006-2008 Board of Regents of the University of Wisconsin System (Univ. of Wisconsin-Madison, Trace R&D Center). * * This piece of the software package, developed by the Trace Center - University of Wisconsin is released to the public domain with only the following restrictions: * * 1) That the following acknowledgement be included in the source code and documentation for the program or package that use this code: * * "Parts of this program were based on software developed by the Trace Center, University of Wisconsin-Madison under funding from NIDRR / US Dept of Education." * * 2) That this program not be modified unless it is plainly marked as modified from the original distributed by Trace. * * NOTE: This license agreement does not cover third-party components bundled with this software, which have their own license agreement with them. A list of included third-party components with references to their license files is provided with this distribution. * * This software was developed under funding from NIDRR / US Dept of Education under grant # H133E030012. * * THIS SOFTWARE IS EXPERIMENTAL/DEMONSTRATION IN NATURE. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * * Note: This file is based on the UCH 1.0 specification of the URC Consortium, http://myurc.org/TR/uch1.0/. * */ #ifndef _TDMFATALEXCEPTION_H #define _TDMFATALEXCEPTION_H #include #include #include using std::string; using std::map; using std::list; using namespace std; namespace org { namespace myurc{ namespace uch{ /** * TDMFatalException is thrown by the TDM. In case of Exception the UCH calls no function of the TDM anymore, * and may unload the TDM (without calling finalize). The exception includes a text string * describing the problem that occurred. * * @author Parikshit Thakur & Team, Trace R&D Center * @version Revision: 1.0 */ class TDMFatalException { private: string message; public: /** * Creates a new TDMFatalException instance with a specific message. * * @param message The message to be sent with the exception. */ TDMFatalException(string m){ message =m; } /** *Get the TDMFatalException error message */ string getMessage(){ return message; } }; } } } #endif /* _TDMFATALEXCEPTION_H */