Guiliani  Version 2.6 revision 7293 (documentation build 12)
GUIRangeException.h
1/*
2* Copyright (C) TES Electronic Solutions GmbH,
3* All Rights Reserved.
4* Contact: info@guiliani.de
5*
6* This file is part of the Guiliani HMI framework
7* for the development of graphical user interfaces on embedded systems.
8*/
9
10#ifndef __GUIRANGEEXCEPTION_H__
11#define __GUIRANGEEXCEPTION_H__
12
13#include "GUIException.h"
14
18{
19public:
20
25 CGUIRangeException(const eC_Value& vMax = eC_MAXVALUE, const eC_Value& vMin = eC_MINVALUE);
26
30
35
41
46 virtual eC_String Report() const;
47
48private:
50 eC_Value m_vMax;
52 eC_Value m_vMin;
53};
54#endif //__GUIRANGEEXCEPTION_H__
This is the base class for Guiliani exceptions.
Definition: GUIException.h:42
The exception is used to indicate the range errors.
Definition: GUIRangeException.h:18
virtual eC_String Report() const
CGUIRangeException & operator=(const CGUIRangeException &kSource)
CGUIRangeException(const eC_Value &vMax=eC_MAXVALUE, const eC_Value &vMin=eC_MINVALUE)
CGUIRangeException(const CGUIRangeException &kSource)