diff --git a/components/device-mgt-iot-raspberrypi/org.wso2.carbon.device.mgt.iot.raspberrypi.service.impl/src/main/java/org/wso2/carbon/device/mgt/iot/raspberrypi/service/exception/RaspberrypiException.java b/components/device-mgt-iot-raspberrypi/org.wso2.carbon.device.mgt.iot.raspberrypi.service.impl/src/main/java/org/wso2/carbon/device/mgt/iot/raspberrypi/service/exception/RaspberrypiException.java index d3fd75860b..21063ee9dc 100644 --- a/components/device-mgt-iot-raspberrypi/org.wso2.carbon.device.mgt.iot.raspberrypi.service.impl/src/main/java/org/wso2/carbon/device/mgt/iot/raspberrypi/service/exception/RaspberrypiException.java +++ b/components/device-mgt-iot-raspberrypi/org.wso2.carbon.device.mgt.iot.raspberrypi.service.impl/src/main/java/org/wso2/carbon/device/mgt/iot/raspberrypi/service/exception/RaspberrypiException.java @@ -18,14 +18,14 @@ package org.wso2.carbon.device.mgt.iot.raspberrypi.service.exception; -public class RaspberryPiException extends Exception { +public class RaspberrypiException extends Exception { private static final long serialVersionUID = 118512086957330189L; - public RaspberryPiException(String errorMessage) { + public RaspberrypiException(String errorMessage) { super(errorMessage); } - public RaspberryPiException(String errorMessage, Throwable throwable) { + public RaspberrypiException(String errorMessage, Throwable throwable) { super(errorMessage, throwable); } }