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

Last change on this file since 75 was 73, checked in by Marek Kurdej, 12 years ago

Minor: line-endings.

  • Property svn:keywords set to Id
File size: 877 bytes
Line 
1// This file is part of the PACPUS framework distributed under the
2// CECILL-C License, Version 1.0.
3//
4/// @file
5/// @author Firstname Surname <firstname.surname@utc.fr>
6/// @date Month, Year
7/// @version $Id: filter_exception.hpp 73 2013-01-10 16:56:42Z kurdejma $
8/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
9/// @brief Brief description.
10///
11/// Detailed description.
12
13#ifndef __FILTERING_EXECPTION_HPP__
14#define __FILTERING_EXECPTION_HPP__
15
16#include <stdexcept>
17
18namespace filter {
19
20 /*!
21 * \class filter_error
22 * \brief This class describes the filtering exception
23 */
24 class filter_error : public std::logic_error
25 {
26 public:
27 /*!
28 * \brief Construtor
29 */
30 filter_error (const std::string& what_arg) : logic_error( what_arg) {}
31 };
32
33} // namespace filter
34
35#endif // __FILTERING_EXECPTION_HPP__
Note: See TracBrowser for help on using the repository browser.