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

« back to all changes in this revision

Viewing changes to src/core/dataHandler/exceptions/WDHNoSuchDataSet.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:
28
28
#include <string>
29
29
 
30
30
#include "WDHException.h"
31
 
#include "../WExportDataHandler.h"
 
31
 
32
32
 
33
33
/**
34
34
 * Should be thrown when an invalid index is used to get a WDataSet from the
37
37
 *
38
38
 * \ingroup dataHandler
39
39
 */
40
 
class OWDATAHANDLER_EXPORT WDHNoSuchDataSet : public WDHException // NOLINT
 
40
class WDHNoSuchDataSet : public WDHException // NOLINT
41
41
{
42
42
public:
43
43
    /**
52
52
    virtual ~WDHNoSuchDataSet() throw();
53
53
 
54
54
protected:
55
 
 
56
55
private:
57
56
};
58
57