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

Last change on this file since 106 was 76, checked in by Marek Kurdej, 11 years ago

Added: automated license updating lines:
%pacpus:license{
%pacpus:license}

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