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