summaryrefslogtreecommitdiff
path: root/engine
diff options
context:
space:
mode:
authorSho Sakuma <me@m1sk9.dev>2026-03-15 01:30:48 +0900
committerSho Sakuma <me@m1sk9.dev>2026-03-15 01:31:41 +0900
commitd015409b964ecb4c6352dba9845e926f3862ce90 (patch)
tree8a41f079cff5a784d42af10a42e1f2d19317e91f /engine
parent384178d694b109c5f83ab73a03b01aa78b06d670 (diff)
downloadLunaticChat-d015409b964ecb4c6352dba9845e926f3862ce90.tar.gz
LunaticChat-d015409b964ecb4c6352dba9845e926f3862ce90.tar.bz2
LunaticChat-d015409b964ecb4c6352dba9845e926f3862ce90.zip
refactor: Optimization of internal logic
Diffstat (limited to 'engine')
-rw-r--r--engine/src/main/kotlin/dev/m1sk9/lunaticChat/engine/exception/ChannelAlreadyExistsException.kt5
1 files changed, 5 insertions, 0 deletions
diff --git a/engine/src/main/kotlin/dev/m1sk9/lunaticChat/engine/exception/ChannelAlreadyExistsException.kt b/engine/src/main/kotlin/dev/m1sk9/lunaticChat/engine/exception/ChannelAlreadyExistsException.kt
new file mode 100644
index 0000000..de98ebf
--- /dev/null
+++ b/engine/src/main/kotlin/dev/m1sk9/lunaticChat/engine/exception/ChannelAlreadyExistsException.kt
@@ -0,0 +1,5 @@
+package dev.m1sk9.lunaticChat.engine.exception
+
+class ChannelAlreadyExistsException(
+ channelId: String,
+) : Exception("Channel with ID $channelId already exists.")