캐릭터 Controller

- exception print
This commit is contained in:
Klaus 2025-08-12 17:38:45 +09:00
parent 2965b8fea0
commit cc9e4f974f
1 changed files with 2 additions and 1 deletions

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("수정에 실패했습니다. 다시 시도해 주세요.")
} }
} }