source: pacpusframework/trunk/include/Pacpus/kernel/DbiteException.h@ 116

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

Added: PacpusException - base class for all exceptions. DbiteExceptions inherits from it.
Added: PacpusLibConfig.h - dllimport/dllexport clauses separated from pacpus.h.
Update: comments.

  • Property svn:keywords set to Id
File size: 1.0 KB
RevLine 
[76]1// %pacpus:license{
[73]2// This file is part of the PACPUS framework distributed under the
3// CECILL-C License, Version 1.0.
[76]4// %pacpus:license}
[73]5/// @file
6/// @author Marek Kurdej <firstname.surname@utc.fr>
7/// @date Month, 2012
8/// @version $Id: DbiteException.h 116 2013-06-25 11:44:25Z kurdejma $
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>
[116]18#include <Pacpus/kernel/PacpusException.h>
[73]19
20#include <exception>
21#include <string>
22
23namespace pacpus {
24
[116]25/// DbiteException
26/// @brief Exception thrown when an error manipulation a dbite file occured.
[73]27class FILELIB_API DbiteException
[116]28 : virtual public PacpusException
[73]29{
30public:
[116]31 /// Ctor.
32 /// @param what Information about the exception.
33 DbiteException(const std::string & what);
[73]34
[116]35 /// Dtor.
[87]36 virtual ~DbiteException() throw();
[73]37};
38
39} // namespace pacpus
40
41#endif // DEF_PACPUS_DBITEEXCEPTION_H
Note: See TracBrowser for help on using the repository browser.