forked from StoneAtom/StoneDB
97 lines
2.7 KiB
C++
97 lines
2.7 KiB
C++
/*
|
|
Copyright (c) 2017, 2021, Oracle and/or its affiliates.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License, version 2.0,
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is also distributed with certain software (including
|
|
but not limited to OpenSSL) that is licensed under separate terms,
|
|
as designated in a particular file or component or in included license
|
|
documentation. The authors of MySQL hereby grant you an additional
|
|
permission to link the program and your derivative works with the
|
|
separately licensed software that they have included with MySQL.
|
|
|
|
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, version 2.0, 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 Foundation,
|
|
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
|
|
*/
|
|
|
|
/**
|
|
@file
|
|
|
|
@brief
|
|
This file defines functions to convert exceptions to MySQL error messages.
|
|
*/
|
|
|
|
#include "sql_exception_handler.h"
|
|
|
|
#include <new> // std::bad_alloc
|
|
#include <stdexcept> // Other std exceptions
|
|
|
|
#include "my_global.h" // MYF
|
|
#include "my_sys.h" // my_error
|
|
#include "mysqld_error.h" // Error codes
|
|
|
|
void handle_std_exception(const char *funcname)
|
|
{
|
|
try
|
|
{
|
|
throw;
|
|
}
|
|
catch (const std::bad_alloc &e)
|
|
{
|
|
my_error(ER_STD_BAD_ALLOC_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::domain_error &e)
|
|
{
|
|
my_error(ER_STD_DOMAIN_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::length_error &e)
|
|
{
|
|
my_error(ER_STD_LENGTH_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::invalid_argument &e)
|
|
{
|
|
my_error(ER_STD_INVALID_ARGUMENT, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::out_of_range &e)
|
|
{
|
|
my_error(ER_STD_OUT_OF_RANGE_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::overflow_error &e)
|
|
{
|
|
my_error(ER_STD_OVERFLOW_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::range_error &e)
|
|
{
|
|
my_error(ER_STD_RANGE_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::underflow_error &e)
|
|
{
|
|
my_error(ER_STD_UNDERFLOW_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::logic_error &e)
|
|
{
|
|
my_error(ER_STD_LOGIC_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::runtime_error &e)
|
|
{
|
|
my_error(ER_STD_RUNTIME_ERROR, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (const std::exception &e)
|
|
{
|
|
my_error(ER_STD_UNKNOWN_EXCEPTION, MYF(0), e.what(), funcname);
|
|
}
|
|
catch (...)
|
|
{
|
|
my_error(ER_UNKNOWN_ERROR, MYF(0));
|
|
}
|
|
}
|
|
|