Fix grammar issue in error message

This commit is contained in:
tcdlpds@gmail.com 2020-04-15 20:43:08 +05:30
parent 4cf24e6b0a
commit 9abe718838

View File

@ -1801,7 +1801,7 @@ public class ApplicationManagerImpl implements ApplicationManager {
try { try {
DeviceType deviceType = deviceManagementProviderService.getDeviceType(deviceTypeName); DeviceType deviceType = deviceManagementProviderService.getDeviceType(deviceTypeName);
if (deviceType == null) { if (deviceType == null) {
String msg = "Device type doesn't not exist. Hence check the application name existence with valid " String msg = "Device type doesn't exist. Hence check the application name existence with valid "
+ "device type name."; + "device type name.";
log.error(msg); log.error(msg);
throw new BadRequestException(msg); throw new BadRequestException(msg);