javapns.communication.exceptions.KeystoreException 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.communication.exceptions;
/**
* Thrown when we try to contact Apple with an invalid keystore format.
* @author Sylvain Pedneault
*
*/
@SuppressWarnings("serial")
public class KeystoreException extends Exception {
/**
* Constructor with custom message
* @param message
*/
public KeystoreException(String message) {
super(message);
}
/**
* Constructor with custom message
* @param message
*/
public KeystoreException(String message, Exception cause) {
super(message, cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy