~ubuntu-branches/ubuntu/raring/openwalnut/raring

« back to all changes in this revision

Viewing changes to src/core/kernel/exceptions/WModuleRequirementNotMet.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Eichelbaum
  • Date: 2012-12-12 11:26:32 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20121212112632-xhiuwkxuz5h0idkh
Tags: 1.3.1+hg5849-1
* Minor changes compared to 1.3.0 but included several bug fixes.
* See http://www.openwalnut.org/versions/4

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
#include "WModuleException.h"
31
31
 
32
 
#include "../WExportKernel.h"
 
32
 
33
33
 
34
34
class WRequirement;
35
35
 
36
36
/**
37
37
 * Thrown whenever a module should be run but its requirements are not completely met.
38
38
 */
39
 
class OWKERNEL_EXPORT WModuleRequirementNotMet: public WModuleException
 
39
class  WModuleRequirementNotMet: public WModuleException
40
40
{
41
41
public:
42
 
 
43
42
    /**
44
43
     * Default constructor. Creates an instance and sets the message according to the requirement specified here.
45
44
     *
53
52
    virtual ~WModuleRequirementNotMet() throw();
54
53
 
55
54
protected:
56
 
 
57
55
private:
58
56
};
59
57