mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
Handle "invalid committer" error (#3774)
This commit is contained in:
parent
1433fe2fe9
commit
511090d63d
|
@ -82,7 +82,7 @@ ENDCLASS.
|
|||
|
||||
|
||||
|
||||
CLASS ZCL_ABAPGIT_GIT_TRANSPORT IMPLEMENTATION.
|
||||
CLASS zcl_abapgit_git_transport IMPLEMENTATION.
|
||||
|
||||
|
||||
METHOD branches.
|
||||
|
@ -247,6 +247,8 @@ CLASS ZCL_ABAPGIT_GIT_TRANSPORT IMPLEMENTATION.
|
|||
zcx_abapgit_exception=>raise( 'branch delete not allowed' ).
|
||||
ELSEIF lv_string CP '*cannot lock ref*reference already exists*'.
|
||||
zcx_abapgit_exception=>raise( 'branch already exists' ).
|
||||
ELSEIF lv_string CP '*invalid committer*'.
|
||||
zcx_abapgit_exception=>raise( 'invalid committer' ).
|
||||
ENDIF.
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
Loading…
Reference in New Issue
Block a user