javapns.devices.exceptions.DuplicateDeviceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javapns-jdk16 Show documentation
Show all versions of javapns-jdk16 Show documentation
Library to send notifications using APNS
package javapns.devices.exceptions;
/**
* Thrown when a Device already exist and we try to add it a second time
* @author Maxime Peron
*/
@SuppressWarnings("serial")
public class DuplicateDeviceException extends Exception{
/* Custom message for this exception */
private String message;
/**
* Constructor
*/
public DuplicateDeviceException(){
this.message = "Client already exists";
}
/**
* Constructor with custom message
* @param message
*/
public DuplicateDeviceException(String message){
this.message = message;
}
/**
* String representation
*/
public String toString(){
return this.message;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy