IPWorks EDI 2020 Python Edition

Questions / Feedback?

on_error Event

Information about errors during data delivery.

Syntax

class OFTPServerErrorEventParams(object):
  @property
  def connection_id() -> int: ...
  @property
  def error_code() -> int: ...
  @property
  def description() -> str: ...

# In class OFTPServer:
@property
def on_error() -> Callable[[OFTPServerErrorEventParams], None]: ...
@on_error.setter
def on_error(event_hook: Callable[[OFTPServerErrorEventParams], None]) -> None: ...

Remarks

The on_error event is fired in case of exceptional conditions during message processing. Normally the class fails with an error.

ErrorCode contains an error code and Description contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.

ConnectionId contains the Id of the connection to which this error applies.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks EDI 2020 Python Edition - Version 20.0 [Build 8203]