feat,wip: 입찰 기능 동작

This commit is contained in:
2022-06-09 01:21:21 +09:00
parent 30401382fd
commit e0c209bcbb
19 changed files with 390 additions and 64 deletions
+2 -2
View File
@@ -98,10 +98,10 @@ class APIHelper
}
Json::die($result, $setCache ? 0 : Json::NO_CACHE);
} catch (\Exception $e) {
Json::dieWithReason($e->getMessage());
Json::dieWithReason($e->getMessage()."\n".$e->getTraceAsString());
} catch (\Throwable $e) {
logExceptionByCustomHandler($e, false);
Json::dieWithReason($e->getMessage());
Json::dieWithReason($e->getMessage()."\n".$e->getTraceAsString());
} catch (mixed $e) {
Json::dieWithReason(strval($e));
}