com.arm.mbed.cloud.sdk.common.MbedCloudException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mbed-cloud-sdk Show documentation
Show all versions of mbed-cloud-sdk Show documentation
The Pelion Cloud SDK (formerly known as Mbed Cloud SDK) provides a simplified interface to the Pelion Cloud APIs by exposing functionality using conventions and paradigms familiar to Java developers.
package com.arm.mbed.cloud.sdk.common;
import com.arm.mbed.cloud.sdk.annotations.Preamble;
@Preamble(description = "An Arm Mbed cloud exception")
public class MbedCloudException extends Exception {
private static final long serialVersionUID = 3176049212952952513L;
public MbedCloudException() {
super();
}
public MbedCloudException(String message) {
super(message);
}
public MbedCloudException(Throwable cause) {
super("An exception occurred while calling Arm Mbed cloud API", cause);
}
public MbedCloudException(String message, Throwable cause) {
super(message, cause);
}
}