Skip to content

Commit

Permalink
Make error code prefix of general exception an empty string
Browse files Browse the repository at this point in the history
* This is done to avoid a breaking change in the api since this would
  change the error code of already existing exceptions

Signed-off-by: Yannic Klem <Yannic.Klem@bosch.io>
  • Loading branch information
Yannic92 committed May 17, 2022
1 parent 2700854 commit aa1378f
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -22,6 +22,6 @@ public interface GeneralException {
/**
* Error code prefix of errors emitted by any Ditto service.
*/
String ERROR_CODE_PREFIX = "general" + ":";
String ERROR_CODE_PREFIX = "";

}

0 comments on commit aa1378f

Please sign in to comment.