90 lines
2.4 KiB
C++
90 lines
2.4 KiB
C++
/*
|
|
Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
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; version 2 of the License.
|
|
|
|
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 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));
|
|
}
|
|
}
|
|
|