2008-07-16 16:35:59 +08:00
|
|
|
//
|
2008-07-25 17:08:15 +08:00
|
|
|
// ZoneMinder Exception Class Interface, $Date$, $Revision$
|
2008-07-25 17:33:23 +08:00
|
|
|
// Copyright (C) 2001-2008 Philip Coombes
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; either version 2
|
|
|
|
// of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-16 16:35:59 +08:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ZM_EXCEPTION_H
|
|
|
|
#define ZM_EXCEPTION_H
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Exception
|
|
|
|
{
|
|
|
|
protected:
|
2016-04-04 22:11:48 +08:00
|
|
|
typedef enum { INFO, WARNING, ERROR, FATAL } Severity;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
protected:
|
2016-04-04 22:11:48 +08:00
|
|
|
std::string mMessage;
|
|
|
|
Severity mSeverity;
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
public:
|
2016-04-04 22:11:48 +08:00
|
|
|
Exception( const std::string &message, Severity severity=ERROR ) : mMessage( message ), mSeverity( severity )
|
|
|
|
{
|
|
|
|
}
|
2008-07-16 16:35:59 +08:00
|
|
|
|
|
|
|
public:
|
2016-04-04 22:11:48 +08:00
|
|
|
const std::string &getMessage() const
|
|
|
|
{
|
|
|
|
return( mMessage );
|
|
|
|
}
|
|
|
|
Severity getSeverity() const
|
|
|
|
{
|
|
|
|
return( mSeverity );
|
|
|
|
}
|
|
|
|
bool isInfo() const
|
|
|
|
{
|
|
|
|
return( mSeverity == INFO );
|
|
|
|
}
|
|
|
|
bool isWarning() const
|
|
|
|
{
|
|
|
|
return( mSeverity == WARNING );
|
|
|
|
}
|
|
|
|
bool isError() const
|
|
|
|
{
|
|
|
|
return( mSeverity == ERROR );
|
|
|
|
}
|
|
|
|
bool isFatal() const
|
|
|
|
{
|
|
|
|
return( mSeverity == FATAL );
|
|
|
|
}
|
2008-07-16 16:35:59 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ZM_EXCEPTION_H
|