Skip to content

Commit

Permalink
Refactor exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mbtools committed Oct 25, 2023
1 parent 7e9bffa commit 27ce6cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/zcl_abaplint_abapgit_ext_annot.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ CLASS zcl_abaplint_abapgit_ext_annot IMPLEMENTATION.
ENDLOOP.

CATCH zcx_abapgit_ajson_error INTO lx_error.
zcx_abapgit_exception=>raise( lx_error->get_text( ) ).
zcx_abapgit_exception=>raise_with_text( lx_error ).
ENDTRY.

ENDMETHOD.
Expand Down
2 changes: 1 addition & 1 deletion src/zcl_abaplint_abapgit_ext_chkrn.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ CLASS zcl_abaplint_abapgit_ext_chkrn IMPLEMENTATION.
ENDLOOP.

CATCH zcx_abapgit_ajson_error INTO lx_error.
zcx_abapgit_exception=>raise( lx_error->get_text( ) ).
zcx_abapgit_exception=>raise_with_text( lx_error ).
ENDTRY.

ENDMETHOD.
Expand Down

0 comments on commit 27ce6cd

Please sign in to comment.