SectionPairSectionArgumentEvaluator.cpp 1.1 KB

123456789101112131415161718192021222324252627
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-20
  6. * Changed: 2023-02-22
  7. *
  8. * */
  9. #include <ls-std/core/exception/IllegalArgumentException.hpp>
  10. #include <ls-std/io/section-pair/SectionPairMessageFormatter.hpp>
  11. #include <ls-std/io/section-pair/evaluator/SectionPairSectionArgumentEvaluator.hpp>
  12. #include <ls-std/io/section-pair/validator/SectionPairSectionValidator.hpp>
  13. ls::std::io::SectionPairSectionArgumentEvaluator::SectionPairSectionArgumentEvaluator(::std::string _section) : ls::std::core::Class("SectionPairSectionArgumentEvaluator"), section(::std::move(_section))
  14. {}
  15. ls::std::io::SectionPairSectionArgumentEvaluator::~SectionPairSectionArgumentEvaluator() noexcept = default;
  16. void ls::std::io::SectionPairSectionArgumentEvaluator::evaluate()
  17. {
  18. if (!ls::std::io::SectionPairSectionValidator{this->section}.isValid())
  19. {
  20. ::std::string message = "\"" + this->section + "\" is not a valid section!";
  21. throw ls::std::core::IllegalArgumentException{ls::std::io::SectionPairMessageFormatter::getFormattedMessage(message)};
  22. }
  23. }