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

javapns.communication.exceptions.InvalidKeystoreFormatException Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
package javapns.communication.exceptions;

/**
 * Thrown when we try to contact Apple with an invalid keystore format.
 * @author Sylvain Pedneault
 *
 */
@SuppressWarnings("serial")
public class InvalidKeystoreFormatException extends KeystoreException {

	/**
	 * Constructor
	 */
	public InvalidKeystoreFormatException() {
		super("Invalid keystore format!  Make sure it is PKCS12...");
	}


	/**
	 * Constructor with custom message
	 * @param message
	 */
	public InvalidKeystoreFormatException(String message) {
		super(message);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy