0031687: Draw Harness, ViewerTest - extend command vrenderparams with option updating...
[occt.git] / src / Standard / Standard_DefineException.hxx
CommitLineData
973c2be1 1// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 2//
973c2be1 3// This file is part of Open CASCADE Technology software library.
b311480e 4//
d5f74e42 5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
b311480e 10//
973c2be1 11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
b311480e 13
7fd59977 14#ifndef _Standard_DefineException_HeaderFile
15#define _Standard_DefineException_HeaderFile
16
69ff08ff 17#include <Standard_Type.hxx>
7fd59977 18
19//! Defines an exception class \a C1 that inherits an exception class \a C2.
20/*! \a C2 must be Standard_Failure or its ancestor.
21 The macro defines empty constructor, copy constructor and static methods Raise() and NewInstance().
22 Since Standard_Failure implements class manipulated by handle, DEFINE_STANDARD_RTTI macro is also
23 added to enable RTTI.
24
25 When using DEFINE_STANDARD_EXCEPTION in your code make sure you also insert a macro
26 DEFINE_STANDARD_HANDLE(C1,C2) before it.
7fd59977 27*/
69ff08ff 28
7fd59977 29#define DEFINE_STANDARD_EXCEPTION(C1,C2) \
30 \
31class C1 : public C2 { \
79104795 32 void Throw () const Standard_OVERRIDE { throw *this; } \
7fd59977 33public: \
34 C1() : C2() {} \
69ff08ff 35 C1(const Standard_CString theMessage) : C2(theMessage) {} \
36 static void Raise(const Standard_CString theMessage = "") { \
37 Handle(C1) _E = new C1; \
38 _E->Reraise(theMessage); \
39 } \
40 static void Raise(Standard_SStream& theMessage) { \
41 Handle(C1) _E = new C1; \
42 _E->Reraise (theMessage); \
43 } \
44 static Handle(C1) NewInstance(const Standard_CString theMessage = "") { return new C1(theMessage); } \
92efcf78 45 DEFINE_STANDARD_RTTI_INLINE(C1,C2) \
7fd59977 46};
47
69ff08ff 48//! Obsolete macro, kept for compatibility with old code
49#define IMPLEMENT_STANDARD_EXCEPTION(C1)
7fd59977 50
51#endif