abap2xlsx/src/zcl_excel_reader_huge_file.clas.locals_imp.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
513 B
ABAP

*"* use this source file for the definition and implementation of
*"* local helper classes, interface definitions and type
*"* declarations
* Signal "not found"
CLASS lcx_not_found IMPLEMENTATION.
METHOD constructor.
super->constructor( textid = textid previous = previous ).
me->error = error.
ENDMETHOD. "constructor
METHOD if_message~get_text.
result = error.
ENDMETHOD. "if_message~get_text
ENDCLASS. "lcx_not_found IMPLEMENTATION