mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-02-01 13:20:39 +01:00
73 lines
1.9 KiB
C
73 lines
1.9 KiB
C
|
//
|
||
|
// Copyright (c) 2001 M. Nordell
|
||
|
//
|
||
|
/*
|
||
|
* 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, 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; see the file COPYING. If not, write to
|
||
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
*/
|
||
|
//
|
||
|
// Special permission is given to the Firebird project to include,
|
||
|
// use and modify this file in the Firebird database engine.
|
||
|
//
|
||
|
#ifndef FB_EXCEPTION_H
|
||
|
#define FB_EXCEPTION_H
|
||
|
|
||
|
#include <exception>
|
||
|
#include "fb_types.h"
|
||
|
|
||
|
|
||
|
namespace Firebird {
|
||
|
|
||
|
class status_longjmp_error : public std::exception
|
||
|
{
|
||
|
public:
|
||
|
explicit status_longjmp_error(STATUS s)
|
||
|
: m_s(s)
|
||
|
{}
|
||
|
virtual ~status_longjmp_error() {}
|
||
|
virtual const char* what() const
|
||
|
{ return "Firebird::status_longjmp_error"; }
|
||
|
STATUS value() const { return m_s; }
|
||
|
|
||
|
// TMN: to be moved into its own source file!
|
||
|
static void raise(STATUS s) { throw status_longjmp_error(s); }
|
||
|
|
||
|
private:
|
||
|
STATUS m_s;
|
||
|
};
|
||
|
|
||
|
class red_zone_error : public std::exception
|
||
|
{
|
||
|
public:
|
||
|
virtual const char* what() const
|
||
|
{ return "Firebird::red_zone_error"; }
|
||
|
|
||
|
// TMN: to be moved into its own source file!
|
||
|
static void raise() { throw red_zone_error(); }
|
||
|
};
|
||
|
|
||
|
class memory_corrupt : public std::exception
|
||
|
{
|
||
|
public:
|
||
|
virtual const char* what() const
|
||
|
{ return "Firebird::memory_corrupt"; }
|
||
|
|
||
|
// TMN: to be moved into its own source file!
|
||
|
static void raise() { throw memory_corrupt(); }
|
||
|
};
|
||
|
|
||
|
} // namespace Firebird
|
||
|
|
||
|
#endif // FB_EXCEPTION_H
|