Files
scylladb/streaming/stream_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

33 lines
631 B
C++

/*
*
* Modified by ScyllaDB
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.1 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