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

be.mjosoft.ios.apn.APNException Maven / Gradle / Ivy

Go to download

Java library for easy integration into the Apple Push Notification Service in a Java application.

There is a newer version: 1.0.3
Show newest version
package be.mjosoft.ios.apn;

/**
 * Exception thrown by the APNService class.
 * @author mj
 */
public class APNException extends Exception
{

	public APNException(Throwable cause)
	{
		super(cause);
	}

	public APNException(String message, Throwable cause)
	{
		super(message, cause);
	}

	public APNException(String message)
	{
		super(message);
	}

	public APNException()
	{
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy