source: pacpusframework/branches/2.0-beta1/include/Pacpus/kernel/DbiteException.h@ 156

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

Added: PacpusException.

  • Property svn:executable set to *
File size: 1.0 KB
RevLine 
[89]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 Marek Kurdej <firstname.surname@utc.fr>
7/// @date Month, 2012
[156]8/// @version $Id: DbiteException.h 117 2013-06-25 11:50:46Z kurdejma $
[89]9/// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
10/// @brief Brief description.
11///
12/// Detailed description.
13
14#ifndef DEF_PACPUS_DBITEEXCEPTION_H
15#define DEF_PACPUS_DBITEEXCEPTION_H
16
17#include <Pacpus/kernel/FileLibConfig.h>
[156]18#include <Pacpus/kernel/PacpusException.h>
[89]19
20#include <string>
21
22namespace pacpus {
23
[156]24/// Exception thrown when an error during manipulation a dbite file occurs.
[89]25class FILELIB_API DbiteException
[156]26 : virtual public PacpusException
[89]27{
28public:
[156]29 /// Ctor.
30 /// @param what Information about the exception.
31 DbiteException(const std::string & what);
[89]32
[156]33 /// Dtor.
[89]34 virtual ~DbiteException() throw();
35};
36
37} // namespace pacpus
38
39#endif // DEF_PACPUS_DBITEEXCEPTION_H
Note: See TracBrowser for help on using the repository browser.