handling incorrect captcha and check not found cases

This commit is contained in:
2024-11-28 00:28:37 +03:00
parent 47dfc19395
commit 4d658a817b
7 changed files with 81 additions and 13 deletions

View File

@@ -0,0 +1,6 @@
#include "ofdrequestexception.h"
OfdRequestException::OfdRequestException(const char* msg) : message(msg) {}
const char* OfdRequestException::what() throw() {
return message.c_str();
}