캐릭터 챗봇 #338

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

View File

@ -172,8 +172,9 @@ class AdminChatCharacterController(
// success가 true이면 data.id 반환
return apiResponse.data?.id ?: throw SodaException("등록에 실패했습니다. 응답에 ID가 없습니다.")
} catch (_: Exception) {
throw SodaException("등록에 실패했습니다. 다시 시도해 주세요.")
} catch (e: Exception) {
e.printStackTrace()
throw SodaException("${e.message}, 등록에 실패했습니다. 다시 시도해 주세요.")
}
}