2016-08-01 05:25:37 +00:00
|
|
|
/*
|
2017-02-02 10:06:28 +00:00
|
|
|
This file is part of solidity.
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is free software: you can redistribute it and/or modify
|
2016-08-01 05:25:37 +00:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2017-02-02 10:06:28 +00:00
|
|
|
solidity is distributed in the hope that it will be useful,
|
2016-08-01 05:25:37 +00:00
|
|
|
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
|
2017-02-02 10:06:28 +00:00
|
|
|
along with solidity. If not, see <http://www.gnu.org/licenses/>.
|
2016-08-01 05:25:37 +00:00
|
|
|
*/
|
2020-07-17 14:54:12 +00:00
|
|
|
// SPDX-License-Identifier: GPL-3.0
|
2016-08-01 05:25:37 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <boost/exception/exception.hpp>
|
|
|
|
#include <boost/exception/info.hpp>
|
|
|
|
#include <boost/exception/info_tuple.hpp>
|
|
|
|
#include <boost/exception/diagnostic_information.hpp>
|
2017-07-13 09:33:06 +00:00
|
|
|
|
|
|
|
#include <exception>
|
|
|
|
#include <string>
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2019-12-11 16:31:36 +00:00
|
|
|
namespace solidity::util
|
2016-08-01 05:25:37 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
/// Base class for all exceptions.
|
|
|
|
struct Exception: virtual std::exception, virtual boost::exception
|
|
|
|
{
|
2019-02-14 10:53:00 +00:00
|
|
|
char const* what() const noexcept override;
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-02-24 18:31:20 +00:00
|
|
|
/// @returns "FileName:LineNumber" referring to the point where the exception was thrown.
|
|
|
|
std::string lineInfo() const;
|
|
|
|
|
2017-07-13 09:33:06 +00:00
|
|
|
/// @returns the errinfo_comment of this exception.
|
|
|
|
std::string const* comment() const noexcept;
|
2016-08-01 05:25:37 +00:00
|
|
|
};
|
|
|
|
|
2021-10-08 12:44:43 +00:00
|
|
|
/// Throws an exception with a given description and extra information about the location the
|
|
|
|
/// exception was thrown from.
|
|
|
|
/// @param _exceptionType The type of the exception to throw (not an instance).
|
|
|
|
/// @param _description The message that describes the error.
|
|
|
|
#define solThrow(_exceptionType, _description) \
|
|
|
|
::boost::throw_exception( \
|
|
|
|
_exceptionType() << \
|
2022-04-06 20:22:23 +00:00
|
|
|
::solidity::util::errinfo_comment((_description)) << \
|
2021-10-08 12:44:43 +00:00
|
|
|
::boost::throw_function(ETH_FUNC) << \
|
|
|
|
::boost::throw_file(__FILE__) << \
|
|
|
|
::boost::throw_line(__LINE__) \
|
|
|
|
)
|
|
|
|
|
2021-10-12 10:51:44 +00:00
|
|
|
/// Defines an exception type that's meant to signal a specific condition and be caught rather than
|
|
|
|
/// unwind the stack all the way to the top-level exception handler and interrupt the program.
|
|
|
|
/// As such it does not carry a message - the code catching it is expected to handle it without
|
|
|
|
/// letting it escape.
|
2019-12-11 16:31:36 +00:00
|
|
|
#define DEV_SIMPLE_EXCEPTION(X) struct X: virtual ::solidity::util::Exception { const char* what() const noexcept override { return #X; } }
|
2016-08-01 05:25:37 +00:00
|
|
|
|
2017-10-20 14:23:28 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(InvalidAddress);
|
2016-08-01 05:25:37 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(BadHexCharacter);
|
2019-11-25 17:16:35 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(BadHexCase);
|
2020-10-31 01:04:53 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(FileNotFound);
|
2021-06-25 12:21:44 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(NotAFile);
|
2019-04-25 17:53:21 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(DataTooLong);
|
2019-11-28 13:33:38 +00:00
|
|
|
DEV_SIMPLE_EXCEPTION(StringTooLong);
|
2016-08-01 05:25:37 +00:00
|
|
|
|
|
|
|
// error information to be added to exceptions
|
|
|
|
using errinfo_comment = boost::error_info<struct tag_comment, std::string>;
|
|
|
|
|
|
|
|
}
|