From e8a02db2258420c61d5c153b84bb69821f26b53f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=BCnter?= Date: Tue, 10 Mar 2026 07:53:10 +0100 Subject: [PATCH 1/2] update serializer class with zcx_abapgit_type_not_supported --- src/development-guide/serializers/serializers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/development-guide/serializers/serializers.md b/src/development-guide/serializers/serializers.md index cd3f19584..0f5ab3cd5 100755 --- a/src/development-guide/serializers/serializers.md +++ b/src/development-guide/serializers/serializers.md @@ -33,8 +33,8 @@ Requirements that are necessary to support an object type should be checked in t TRY. " Check requirements... CATCH cx_root. - " Raise an exception if not supported - zcx_abapgit_exception=>raise( 'Object type SRFC not supported' ). + " Raise an exception if not supported + RAISE EXCEPTION TYPE zcx_abapgit_type_not_supported EXPORTING obj_type = ms_item-obj_type. ENDTRY. ENDMETHOD. From 88a01bdb46fa2b260600a3f64f64cb808cb3075f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=BCnter?= Date: Tue, 10 Mar 2026 07:54:08 +0100 Subject: [PATCH 2/2] cleanup --- src/development-guide/serializers/serializers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/development-guide/serializers/serializers.md b/src/development-guide/serializers/serializers.md index 0f5ab3cd5..ab7dff62d 100755 --- a/src/development-guide/serializers/serializers.md +++ b/src/development-guide/serializers/serializers.md @@ -33,7 +33,7 @@ Requirements that are necessary to support an object type should be checked in t TRY. " Check requirements... CATCH cx_root. - " Raise an exception if not supported + " Raise an exception if not supported RAISE EXCEPTION TYPE zcx_abapgit_type_not_supported EXPORTING obj_type = ms_item-obj_type. ENDTRY.