|
Last change
on this file since 64 was 64, checked in by Marek Kurdej, 13 years ago |
|
Modified property: added svn:keywords=Id.
|
-
Property svn:keywords
set to
Id
|
|
File size:
427 bytes
|
| Line | |
|---|
| 1 | #ifndef __FILTERING_EXECPTION_HPP__
|
|---|
| 2 | #define __FILTERING_EXECPTION_HPP__
|
|---|
| 3 |
|
|---|
| 4 | #include <stdexcept>
|
|---|
| 5 |
|
|---|
| 6 | namespace filter {
|
|---|
| 7 |
|
|---|
| 8 | /*!
|
|---|
| 9 | * \class filter_error
|
|---|
| 10 | * \brief This class describes the filtering exception
|
|---|
| 11 | */
|
|---|
| 12 | class filter_error : public std::logic_error
|
|---|
| 13 | {
|
|---|
| 14 | public:
|
|---|
| 15 | /*!
|
|---|
| 16 | * \brief Construtor
|
|---|
| 17 | */
|
|---|
| 18 | filter_error (const std::string& what_arg) : logic_error( what_arg) {}
|
|---|
| 19 | };
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 | };
|
|---|
| 23 |
|
|---|
| 24 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.