All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javapns.devices.exceptions.NullDeviceTokenException Maven / Gradle / Ivy

The newest version!
package javapns.devices.exceptions;

/**
 * Thrown when the given token is null
 * @author Maxime Peron
 *
 */
@SuppressWarnings("serial")
public class NullDeviceTokenException extends Exception{

	/* Custom message for this exception */
	private String message;
	
	/**
	 * Constructor
	 */
	public NullDeviceTokenException(){
		this.message = "Client already exists";
	}
	
	/**
	 * Constructor with custom message
	 * @param message
	 */
	public NullDeviceTokenException(String message){
		this.message = message;
	}
	
	/**
	 * String representation
	 */
	public String toString(){
		return this.message;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy