thepeg is hosted by Hepforge, IPPP Durham
ThePEG  2.2.1
RemnantHandler.xh
1 // -*- C++ -*-
2 //
3 // RemnantHandler.xh is a part of ThePEG - Toolkit for HEP Event Generation
4 // Copyright (C) 1999-2019 Leif Lonnblad
5 //
6 // ThePEG is licenced under version 3 of the GPL, see COPYING for details.
7 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
8 //
9 #ifndef ThePEG_RemnantHandler_XH
10 #define ThePEG_RemnantHandler_XH
11 //
12 // This is the declarations of the exception classes used by the
13 // RemnantHandler class.
14 //
15 
16 // #include "RemnantHandler.fh"
17 
18 #include "ThePEG/Utilities/Exception.h"
19 
20 namespace ThePEG {
21 
22 /** @cond EXCEPTIONCLASSES */
23 /** Exception class used by RemnantHandler if something goes wrong. */
24 struct RemnantHandlerException: public Exception {
25  /** Standard constructor. */
26  RemnantHandlerException(string p0, string p, string r, string mess);
27 };
28 /** @endcond */
29 
30 }
31 
32 #endif /* ThePEG_RemnantHandler_XH */
33