Handle "invalid committer" error (#3774)

This commit is contained in:
fdupret 2020-08-20 17:56:40 +02:00 committed by GitHub
parent 1433fe2fe9
commit 511090d63d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,7 +82,7 @@ ENDCLASS.
CLASS ZCL_ABAPGIT_GIT_TRANSPORT IMPLEMENTATION. CLASS zcl_abapgit_git_transport IMPLEMENTATION.
METHOD branches. METHOD branches.
@ -247,6 +247,8 @@ CLASS ZCL_ABAPGIT_GIT_TRANSPORT IMPLEMENTATION.
zcx_abapgit_exception=>raise( 'branch delete not allowed' ). zcx_abapgit_exception=>raise( 'branch delete not allowed' ).
ELSEIF lv_string CP '*cannot lock ref*reference already exists*'. ELSEIF lv_string CP '*cannot lock ref*reference already exists*'.
zcx_abapgit_exception=>raise( 'branch already exists' ). zcx_abapgit_exception=>raise( 'branch already exists' ).
ELSEIF lv_string CP '*invalid committer*'.
zcx_abapgit_exception=>raise( 'invalid committer' ).
ENDIF. ENDIF.
ENDMETHOD. ENDMETHOD.