![JAR search and dependency download from the Maven repository](/logo.png)
net.nurigo.java_sdk.exceptions.CoolsmsException 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
Coolsms Java SDK using Rest API.
The newest version!
package net.nurigo.java_sdk.exceptions;
/**
* @class CoolsmsException
* @brief Thrown when an SDK call returns an comprehensive exception.
*/
public class CoolsmsException extends Exception {
private int code;
public CoolsmsException(String message, int code) {
super(message);
this.code = code;
}
public int getCode() {
return this.code;
}
public String toString() {
return "Message : " + this.getMessage() + " Code : " + this.code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy