Files
scylladb/marshal_exception.hh
Avi Kivity 0ae22a09d4 LICENSE: Update to version 1.1
Updated terms of non-commercial use (must be a never-customer).
2026-04-12 19:46:33 +03:00

30 lines
869 B
C++

/*
* Copyright (C) 2017-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.1
*/
#pragma once
#include <seastar/core/sstring.hh>
#include "seastarx.hh"
class marshal_exception : public std::exception {
sstring _why;
public:
marshal_exception() = delete;
marshal_exception(sstring why) : _why(sstring("marshaling error: ") + why) {}
virtual const char* what() const noexcept override { return _why.c_str(); }
};
// Speed up compilation of code using throw_with_backtrace<marshal_exception,
// sstring> by compiling it only once (in types.cc), and elsewhere say that
// it is extern and not compile it again.
namespace seastar {
template <class Exc, typename... Args> [[noreturn]] void throw_with_backtrace(Args&&... args);
extern template void throw_with_backtrace<marshal_exception, sstring>(sstring&&);
}