캐릭터 챗봇 #338

Merged
klaus merged 119 commits from test into main 2025-09-10 06:08:47 +00:00
1 changed files with 2 additions and 1 deletions
Showing only changes of commit cc9e4f974f - Show all commits

View File

@ -392,7 +392,8 @@ class AdminChatCharacterController(
if (!apiResponse.success) { if (!apiResponse.success) {
throw SodaException(apiResponse.message ?: "수정에 실패했습니다. 다시 시도해 주세요.") throw SodaException(apiResponse.message ?: "수정에 실패했습니다. 다시 시도해 주세요.")
} }
} catch (_: Exception) { } catch (e: Exception) {
e.printStackTrace()
throw SodaException("수정에 실패했습니다. 다시 시도해 주세요.") throw SodaException("수정에 실패했습니다. 다시 시도해 주세요.")
} }
} }