package org.cumulus4j.keymanager.api; import org.cumulus4j.keystore.KeyStore; /** *

* Thrown, if an {@link KeyStore#isEmpty() empty} KeyStore is expected, but the key-store is * not empty. For example, some key-store-initialisations can only be done, if the key-store is empty (i.e. new). *

* This is a wrapper for {@link org.cumulus4j.keystore.KeyStoreNotEmptyException}. *

* * @author Marco หงุ่ยตระกูล-Schulze - marco at nightlabs dot de */ public class KeyStoreNotEmptyException extends KeyManagerException { private static final long serialVersionUID = 1L; public KeyStoreNotEmptyException() { } public KeyStoreNotEmptyException(String message, Throwable cause) { super(message, cause); } public KeyStoreNotEmptyException(String message) { super(message); } public KeyStoreNotEmptyException(Throwable cause) { super(cause); } }