Skip to content

Commit

Permalink
例外発生時のメッセージボックスを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
nekosaburo8250 committed Oct 14, 2017
1 parent 1e810ba commit 8971d16
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
Binary file modified .vs/slnx.sqlite
Binary file not shown.
Binary file modified .vs/syokudou/v15/.suo
Binary file not shown.
9 changes: 7 additions & 2 deletions shokudo_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def onEVT_TEXT_ENTER(evt):
try:
student_id=textbox.GetValue()
if not student_id:
message_label_text.SetLabel("学籍番号を入力してください")
return
sock=socket.socket()
#sock.connect(("192.168.11.8",55555))
Expand All @@ -26,11 +27,15 @@ def onEVT_TEXT_ENTER(evt):
textbox.Clear()

except ConnectionResetError:
print("接続が切断されました.LANケーブル,ハブの電源を確認して下さい.")
print("接続が切断されました。LANケーブル、ハブの電源を確認して下さい。")
wx.MessageBox("接続が切断されました。LANケーブル、ハブの電源を確認して下さい。",style=wx.OK)
textbox.Clear()

except BaseException as ex:
#TODO:BaseException必須?
print(ex+"原因不明の例外です.")
print("原因不明の例外です.")
wx.MessageBox("プログラムで原因不明の例外が発生しました。",style=wx.OK)
textbox.Clear()


app=wx.App()
Expand Down
5 changes: 2 additions & 3 deletions shokudo_server.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#TODO:停電対策(耐障害)

from enum import Enum
import socket
import re
import csv
Expand Down Expand Up @@ -28,6 +27,6 @@
else:
client_sock.sendall(b"INVALID_ID")
except ConnectionResetError:
print("接続が切断されましたLANケーブルハブの電源を確認して下さい")
print("接続が切断されましたLANケーブルハブの電源を確認して下さい")
except BaseException as ex:
print(ex+"原因不明の例外です")
print(ex+"原因不明の例外です")

1 comment on commit 8971d16

@nekosaburo8250
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

スクリーンショット

shokudo00

Please sign in to comment.