Rev | Line | |
---|
[156] | 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 | /// @author Marek Kurdej <firstname.surname@utc.fr>
|
---|
| 6 | /// @version $Id$
|
---|
| 7 |
|
---|
| 8 | #include <Pacpus/kernel/PacpusException.h>
|
---|
| 9 |
|
---|
| 10 | using namespace pacpus;
|
---|
| 11 |
|
---|
[317] | 12 | PacpusException::PacpusException(char const* what)
|
---|
| 13 | : std::runtime_error(what)
|
---|
| 14 | {
|
---|
| 15 | }
|
---|
| 16 |
|
---|
[280] | 17 | PacpusException::PacpusException(std::string const& what)
|
---|
| 18 | : std::runtime_error(what)
|
---|
[156] | 19 | {
|
---|
| 20 | }
|
---|
| 21 |
|
---|
[284] | 22 | PacpusException::~PacpusException() throw()
|
---|
[156] | 23 | {
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.