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)
|
(defmethod handle-request ((api api) request)
|
||||||
(let* ((data (parse-request request))
|
(flet ((handle-fun ()
|
||||||
(type (getf data :type)))
|
(let* ((data (parse-request request))
|
||||||
(cond
|
(type (getf data :type)))
|
||||||
((equal type "new-game") (handle-new-game api data))
|
(cond
|
||||||
((equal type "update") (handle-update api data))
|
((equal type "new-game") (handle-new-game api data))
|
||||||
(t (format t "Unknow type")))))
|
((equal type "update") (handle-update api data))
|
||||||
|
(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