#include "message_handler_error.h" #include using namespace NBus; using namespace NBus::NTest; void TBusClientHandlerError::OnError(TAutoPtr, EMessageStatus status) { Y_ABORT("must not be called, status: %s", ToString(status).data()); } void TBusClientHandlerError::OnReply(TAutoPtr, TAutoPtr) { Y_ABORT("must not be called"); } void TBusClientHandlerError::OnMessageSentOneWay(TAutoPtr) { Y_ABORT("must not be called"); } void TBusServerHandlerError::OnError(TAutoPtr, EMessageStatus status) { Y_ABORT("must not be called, status: %s", ToString(status).data()); } void TBusServerHandlerError::OnMessage(TOnMessageContext&) { Y_ABORT("must not be called"); }