INTRODUCTION
Overview
Download and Install
Documentation
Publications

REPOSITORY
Libraries

DEVELOPER
Dev Guide
Dashboard

PEOPLE
Contributors
Users

SourceForge.net Logo
Project
Download
Mailing lists

 

         
gbxsmartbatteryacfr/exceptions.h
1/*
2 * GearBox Project: Peer-Reviewed Open-Source Libraries for Robotics
3 * http://gearbox.sf.net/
4 * Copyright (c) 2004-2010 Tobias Kaupp
5 *
6 * This distribution is licensed to you under the terms described in
7 * the LICENSE file included in this distribution.
8 *
9 */
10
11#ifndef GBX_SMARTBATTERYACFR_EXCEPTIONS_H
12#define GBX_SMARTBATTERYACFR_EXCEPTIONS_H
13
14#include <gbxutilacfr/exceptions.h>
15
17
19class HardwareReadingException : public gbxutilacfr::Exception
20{
21 public:
22 HardwareReadingException( const char *file, const char *line, const char *message )
23 : Exception( file, line, message ) {}
24};
25
27class ParsingException : public gbxutilacfr::Exception
28{
29 public:
30 ParsingException( const char *file, const char *line, const char *message )
31 : Exception( file, line, message ) {}
32};
33
34}
35
36#endif
37
Base class for all GbxUtilAcfr exceptions.
Definition gbxutilacfr/exceptions.h:66
SmartBattery library.
Definition gbxsmartbatteryacfr/exceptions.h:16
 

Generated for GearBox by  doxygen 1.4.5