Skip to content

Commit

Permalink
멍청한 human error 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
byundojin authored and onee-only committed Nov 25, 2024
1 parent 1f06a48 commit 7fe5c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion message/payload/internal/base_payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _from_dict(cls, dict: dict):
try:
kwargs[key] = t.__args__[0](**dict[key])
except:
raise MissingFieldException(key, e)
raise InvalidFieldException(key, e)
continue

if issubclass(t, Payload):
Expand Down

0 comments on commit 7fe5c2f

Please sign in to comment.