mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00

* Make exceptions compatible with 702 702 does not deserialize exception classes correctly that have a constructor in a super class (see #1273). Adding an explicit constructor that calls the super-constructor, the issue is avoided. * Pretty Co-authored-by: Lars Hvam <larshp@hotmail.com>
28 lines
495 B
ABAP
28 lines
495 B
ABAP
CLASS zcx_abapgit_not_found DEFINITION
|
|
PUBLIC
|
|
INHERITING FROM cx_static_check
|
|
FINAL
|
|
CREATE PUBLIC.
|
|
|
|
PUBLIC SECTION.
|
|
|
|
METHODS constructor
|
|
IMPORTING
|
|
!textid LIKE textid OPTIONAL
|
|
!previous LIKE previous OPTIONAL.
|
|
PROTECTED SECTION.
|
|
PRIVATE SECTION.
|
|
ENDCLASS.
|
|
|
|
|
|
|
|
CLASS zcx_abapgit_not_found IMPLEMENTATION.
|
|
|
|
|
|
METHOD constructor ##ADT_SUPPRESS_GENERATION.
|
|
super->constructor(
|
|
textid = textid
|
|
previous = previous ).
|
|
ENDMETHOD.
|
|
ENDCLASS.
|