Skip to content

Commit

Permalink
add internal error result
Browse files Browse the repository at this point in the history
  • Loading branch information
xfqwdsj committed Apr 27, 2024
1 parent 62580a7 commit eb909ae
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions py/src/commonMain/kotlin/Message.kt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ sealed class Message {

@Serializable
data object LowResolution : Result()

/**
* 可能的原因:
* - 请求被分配到了一个错误的处理器
*/
@Serializable
data object InternalError : Result()
}
}

Expand Down

0 comments on commit eb909ae

Please sign in to comment.