INTRODUCTION
Overview
Download and Install
Documentation
Publications
REPOSITORY
Libraries
DEVELOPER
Dev Guide
Dashboard
PEOPLE
Contributors
Users
Project
Download
Mailing lists
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
src
gbxsmartbatteryacfr
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
16
namespace
gbxsmartbatteryacfr {
17
19
class
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
27
class
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
Generated for GearBox by
1.4.5