|
Last change
on this file since 89 was 89, checked in by morasjul, 13 years ago |
|
PACPUS 2.0 Beta deployed in new branch
Major changes:
-Add communication interface between components
-Add examples for communications interface (TestComponents)
-Move to Qt5 support
|
-
Property svn:executable
set to
*
|
|
File size:
513 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 | /// @version $Id: DbiteException.cpp 87 2013-03-27 15:38:14Z morasjul $
|
|---|
| 6 |
|
|---|
| 7 | #include <Pacpus/kernel/DbiteException.h>
|
|---|
| 8 |
|
|---|
| 9 | using namespace pacpus;
|
|---|
| 10 |
|
|---|
| 11 | DbiteException::DbiteException(const std::string& what)
|
|---|
| 12 | : mWhat(what)
|
|---|
| 13 | {
|
|---|
| 14 | }
|
|---|
| 15 |
|
|---|
| 16 | DbiteException::~DbiteException() throw()
|
|---|
| 17 | {
|
|---|
| 18 | }
|
|---|
| 19 |
|
|---|
| 20 | const char* DbiteException::what() const throw()
|
|---|
| 21 | {
|
|---|
| 22 | return mWhat.c_str();
|
|---|
| 23 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.