#pragma once #include "checker/errors/types/imails_error.hpp" namespace smtp::checker::errors::settings { class Empty : public types::IError { public: Empty() = default; ~Empty() override = default; bool Check( std::string const& line ) const override; }; }