From 0362e66908ae3e601a919baa87f01b4bef8ec627 Mon Sep 17 00:00:00 2001 From: GPrathap Date: Thu, 17 Dec 2015 14:39:55 +0530 Subject: [PATCH] changed class name --- .../raspberrypi/service/exception/RaspberrypiException.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } }