mirror of
https://github.com/abap2xlsx/abap2xlsx.git
synced 2025-05-05 17:50:33 +08:00

* 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>
15 lines
519 B
ABAP
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.
|