RED-5293: fixed broken IllegalArgumentException, it throws now a 400 instead of 500

This commit is contained in:
Ali Oezyetimoglu 2022-11-09 14:18:25 +01:00
parent 274fc4551e
commit e2c4b75ad4

View File

@ -36,7 +36,7 @@ import lombok.extern.slf4j.Slf4j;
@EnableConfigurationProperties(LiquibaseProperties.class)
public class TenantManagementService {
private static final Set<String> SQL_CONNECTION_ERROR_CODES = Set.of("08000", "08003", "08006");
private static final Set<String> SQL_CONNECTION_ERROR_CODES = Set.of("08000", "08003", "08006", "3D000");
private final EncryptionDecryptionService encryptionService;