be.mjosoft.ios.apn.APNException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MjoSoft-APNService Show documentation
Show all versions of MjoSoft-APNService Show documentation
Java library for easy integration into the Apple Push Notification Service in a Java application.
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