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 Marek Kurdej <firstname.surname@utc.fr>
|
---|
7 | /// @date Month, 2012
|
---|
8 | /// @version $Id: DbiteException.h 87 2013-03-27 15:38:14Z morasjul $
|
---|
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>
|
---|
18 |
|
---|
19 | #include <exception>
|
---|
20 | #include <string>
|
---|
21 |
|
---|
22 | namespace pacpus {
|
---|
23 |
|
---|
24 | /** DbiteException
|
---|
25 | * @brief Exception thrown when an error manipulation a dbite file occured.
|
---|
26 | */
|
---|
27 | class FILELIB_API DbiteException
|
---|
28 | : public std::exception
|
---|
29 | {
|
---|
30 | public:
|
---|
31 | /** Ctor of DbiteException.
|
---|
32 | * @param what Information about the exception.
|
---|
33 | */
|
---|
34 | DbiteException(const std::string& what);
|
---|
35 |
|
---|
36 | /** Dtor of DbiteException. */
|
---|
37 | virtual ~DbiteException() throw();
|
---|
38 |
|
---|
39 |
|
---|
40 | /** Get more information about the error.
|
---|
41 | * @return Message containing information about the error.
|
---|
42 | */
|
---|
43 | virtual const char* what() const throw();
|
---|
44 |
|
---|
45 |
|
---|
46 | private:
|
---|
47 | std::string mWhat;
|
---|
48 | };
|
---|
49 |
|
---|
50 | } // namespace pacpus
|
---|
51 |
|
---|
52 | #endif // DEF_PACPUS_DBITEEXCEPTION_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.