abap2xlsx/src/zcl_excel_reader_huge_file.clas.locals_def.abap
sandraros 9ee01464fc
keyword_case upper (#942)
* keyword to upper case (using class builder)

(methods in zcl_excel_style_changer were automatically reordered)

* keyword upper case of local implementations

* Update src/zcl_excel_style_changer.clas.abap

Co-authored-by: sandraros <sandra.rossi@gmail.com>
Co-authored-by: Abo <andrea@borgia.bo.it>
2022-01-02 08:23:57 +01:00

15 lines
519 B
ABAP

*"* use this source file for any type of declarations (class
*"* definitions, interfaces or type declarations) you need for
*"* components in the private section
* Signal for "Not found"
CLASS lcx_not_found DEFINITION INHERITING FROM cx_static_check.
PUBLIC SECTION.
DATA error TYPE string.
METHODS constructor
IMPORTING error TYPE string
textid TYPE sotr_conc OPTIONAL
previous TYPE REF TO cx_root OPTIONAL.
METHODS if_message~get_text REDEFINITION.
ENDCLASS.