source: pacpusframework/branches/0.0.x/src/FileLib/src/DbiteException.cpp@ 230

Last change on this file since 230 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: 438 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/// @author Marek Kurdej <firstname.surname@utc.fr>
6/// @version $Id: DbiteException.cpp 116 2013-06-25 11:44:25Z kurdejma $
7
8#include <Pacpus/kernel/DbiteException.h>
9
10using namespace pacpus;
11
12DbiteException::DbiteException(const std::string& what)
13 : PacpusException(what)
14{
15}
16
17DbiteException::~DbiteException() throw()
18{
19}
Note: See TracBrowser for help on using the repository browser.