docs:SAPデータ日次受領チェック処理 コメント部分を追記した

This commit is contained in:
*lcOeIaePm0 2022-05-26 00:29:21 +09:00
parent 031dcdd02e
commit 0d668c57cd
2 changed files with 4 additions and 0 deletions

View File

@ -187,6 +187,7 @@ def lambda_handler(event, context):
return
# 保守要員チーム通知
def error_notice(error_log_id, exception) -> None:
try:
error_msg = f'{error_log_id} のエラーが発生しました。ご確認ください\n詳細:{exception}'
@ -202,6 +203,7 @@ def error_notice(error_log_id, exception) -> None:
return
# カスタムExceptionクラス
class CustomException(Exception, metaclass=ABCMeta):
def __init__(self, id, arg):
self.arg = arg

View File

@ -187,6 +187,7 @@ def lambda_handler(event, context):
return
# 保守要員チーム通知
def error_notice(error_log_id, exception) -> None:
try:
error_msg = f'{error_log_id} のエラーが発生しました。ご確認ください\n詳細:{exception}'
@ -202,6 +203,7 @@ def error_notice(error_log_id, exception) -> None:
return
# カスタムExceptionクラス
class CustomException(Exception, metaclass=ABCMeta):
def __init__(self, id, arg):
self.arg = arg