Add simple error handling
This commit is contained in:
parent
05aee16e24
commit
ea2de68b47
1 changed files with 13 additions and 6 deletions
|
@ -56,12 +56,19 @@
|
|||
|
||||
|
||||
(defmethod handle-request ((api api) request)
|
||||
(flet ((handle-fun ()
|
||||
(let* ((data (parse-request request))
|
||||
(type (getf data :type)))
|
||||
(cond
|
||||
((equal type "new-game") (handle-new-game api data))
|
||||
((equal type "update") (handle-update api data))
|
||||
(t (format t "Unknow type")))))
|
||||
(t (format t "Unknow type"))))))
|
||||
|
||||
(handler-case
|
||||
(handle-fun)
|
||||
(t (c)
|
||||
(format t "Got an exception: ~a~%" c)
|
||||
"Bad request"))))
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue