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