ThePEG  1.8.0
DecayMode.xh
1 // -*- C++ -*-
2 //
3 // DecayMode.xh is a part of ThePEG - Toolkit for HEP Event Generation
4 // Copyright (C) 1999-2011 Leif Lonnblad
5 //
6 // ThePEG is licenced under version 2 of the GPL, see COPYING for details.
7 // Please respect the MCnet academic guidelines, see GUIDELINES for details.
8 //
9 #ifndef ThePEG_DecayMode_XH
10 #define ThePEG_DecayMode_XH
11 //
12 // This is the declarations of the exception classes used by the
13 // DecayMode class.
14 //
15 
16 #include "ThePEG/Interface/InterfaceBase.xh"
17 
18 namespace ThePEG {
19 
23 class DecModNoAccept: public UpdateException {
24 public:
26  DecModNoAccept(string, string);
27 };
28 
31 class DecModSetupNoAccept: public SetupException {
32 public:
34  DecModSetupNoAccept(string, string);
35 };
36 
38 class DecModRebind: public RebindException {
39 public:
41  DecModRebind(string, string);
42 };
45 }
46 
47 #endif /* ThePEG_DecayMode_XH */
48