SAP / abap-cleaner

ABAP cleaner applies 95+ cleanup rules to ABAP code at a single keystroke
Apache License 2.0
457 stars 49 forks source link

Indentation of CATCH with multiple exception classes #376

Open vonglan opened 2 weeks ago

vonglan commented 2 weeks ago

Hi, it seems this does not work yet.

      CATCH zcx_ycf_data_not_found
    cx_sy_conversion_no_number.
        granularity = -1.
    ENDTRY.

I would like:

      CATCH zcx_ycf_data_not_found
            cx_sy_conversion_no_number.
        granularity = -1.
    ENDTRY.

or

      CATCH zcx_ycf_data_not_found cx_sy_conversion_no_number.
        granularity = -1.
    ENDTRY.

Best regards, Edo