io.cloudboost.CloudException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JavaSDK Show documentation
Show all versions of JavaSDK Show documentation
An open source Java SDK for CloudBoost developing apps
package io.cloudboost;
/**
* @author cloudboost
*
*/
public class CloudException extends Exception{
private static final long serialVersionUID = 1L;
//custom exception
public CloudException(String message){
super(message);
}
}