From 9c3c08b4caa6fc57efba8ac0f0e96162e8bbdc56 Mon Sep 17 00:00:00 2001 From: hasuniea Date: Mon, 30 May 2016 17:15:21 +0530 Subject: [PATCH] fix UnAuthorizedDeviceAccessException.java --- ...ssException.java => UnauthorizedDeviceAccessException.java} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/{UnAuthorizedDeviceAccessException.java => UnauthorizedDeviceAccessException.java} (99%) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnAuthorizedDeviceAccessException.java b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnauthorizedDeviceAccessException.java similarity index 99% rename from components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnAuthorizedDeviceAccessException.java rename to components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnauthorizedDeviceAccessException.java index 7a1846001c..2f35d878f2 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnAuthorizedDeviceAccessException.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/UnauthorizedDeviceAccessException.java @@ -16,10 +16,10 @@ * under the License. * */ + package org.wso2.carbon.device.mgt.common; public class UnauthorizedDeviceAccessException extends RuntimeException { - private static final long serialVersionUID = -3151289331929070297L; public UnauthorizedDeviceAccessException(String msg, Exception nestedEx) { @@ -41,5 +41,4 @@ public class UnauthorizedDeviceAccessException extends RuntimeException { public UnauthorizedDeviceAccessException(Throwable cause) { super(cause); } - }