Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
33 lines
631 B
C++
33 lines
631 B
C++
/*
|
|
*
|
|
* Modified by ScyllaDB
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "streaming/stream_state.hh"
|
|
#include <seastar/core/sstring.hh>
|
|
#include <exception>
|
|
|
|
namespace streaming {
|
|
|
|
class stream_exception : public std::exception {
|
|
public:
|
|
stream_state state;
|
|
sstring msg;
|
|
stream_exception(stream_state s, sstring m)
|
|
: state(std::move(s))
|
|
, msg(std::move(m)) {
|
|
}
|
|
virtual const char* what() const noexcept override {
|
|
return msg.c_str();
|
|
}
|
|
};
|
|
|
|
} // namespace streaming
|