Fawkes API Fawkes Development Version
msg_exceptions.h
1
2/***************************************************************************
3 * msg_exceptions.h - exceptions thrown in msg utils, do NOT put your own
4 * application specific exceptions here!
5 *
6 * Generated: Mon Sep 18 23:11:29 2006
7 * Copyright 2005-2006 Tim Niemueller [www.niemueller.de]
8 *
9 ****************************************************************************/
10
11/* This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version. A runtime exception applies to
15 * this software (see LICENSE.GPL_WRE file mentioned below for details).
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
21 *
22 * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
23 */
24
25#ifndef _UTILS_IPC_MSG_EXCEPTIONS_H_
26#define _UTILS_IPC_MSG_EXCEPTIONS_H_
27
28#include <core/exception.h>
29
30namespace fawkes {
31
32/** Message did not fit into buffer. */
34{
35public:
36 /** Constructor */
37 MessageTooBigException() : Exception("Message too big for buffer")
38 {
39 }
40};
41
42} // end namespace fawkes
43
44#endif
Base class for exceptions in Fawkes.
Definition: exception.h:36
Message did not fit into buffer.
Fawkes library namespace.