13 lines
372 B
C++
13 lines
372 B
C++
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include "redirect.h"
|
|
|
|
Redirect::Redirect(Accepting* destination):
|
|
destination(destination)
|
|
{}
|
|
|
|
const char* Redirect::what() const noexcept {
|
|
return "This is a redirect, should have beeh handled in router, but if you see it - something went terrebly wrong";
|
|
}
|