001    package org.cumulus4j.keymanager.api;
002    
003    /**
004     * Base class for all checked exceptions thrown by {@link KeyManagerAPI} (and related API).
005     *
006     * @author Marco หงุ่ยตระกูล-Schulze - marco at nightlabs dot de
007     */
008    public class KeyManagerException extends Exception
009    {
010            private static final long serialVersionUID = 1L;
011    
012            public KeyManagerException() { }
013    
014            public KeyManagerException(String message) {
015                    super(message);
016            }
017    
018            public KeyManagerException(Throwable cause) {
019                    super(cause);
020            }
021    
022            public KeyManagerException(String message, Throwable cause) {
023                    super(message, cause);
024            }
025    }