source: GTP/trunk/App/Games/Jungle_Rumble/src/physic/foundation/include/NxException.h @ 1378

Revision 1378, 943 bytes checked in by giegl, 18 years ago (diff)

GTPD - Jungle Rumble - integrate into GTP SVN structure

Line 
1#ifndef NX_FOUNDATION_NXEXCEPTION
2#define NX_FOUNDATION_NXEXCEPTION
3/*----------------------------------------------------------------------------*\
4|
5|                                               Public Interface to NovodeX Technology
6|
7|                                                            www.novodex.com
8|
9\*----------------------------------------------------------------------------*/
10/** \addtogroup foundation
11  @{
12*/
13
14#include "Nx.h"
15/**
16 \brief Objects of this class are optionally thrown by some classes as part of the error reporting mechanism.
17*/
18class NxException
19        {
20        public:
21        virtual NxErrorCode getErrorCode() = 0;
22        virtual const char * getFile() = 0;
23        virtual int getLine() = 0;
24        };
25
26/** @} */
27#endif
28
29
30//AGCOPYRIGHTBEGIN
31///////////////////////////////////////////////////////////////////////////
32// Copyright © 2005 AGEIA Technologies.
33// All rights reserved. www.ageia.com
34///////////////////////////////////////////////////////////////////////////
35//AGCOPYRIGHTEND
36
Note: See TracBrowser for help on using the repository browser.