source: pacpusframework/trunk/include/Pacpus/PacpusTools/filtering/filter_exception.hpp@ 30

Last change on this file since 30 was 3, checked in by sgosseli, 12 years ago
  • Add the existing Pacpus files from pacpusdev and pacpuscore.
  • Provide a clean build system based on multiple CMake files.
File size: 427 bytes
Line 
1#ifndef __FILTERING_EXECPTION_HPP__
2#define __FILTERING_EXECPTION_HPP__
3
4#include <stdexcept>
5
6namespace 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.