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

org.xipki.pkcs11.wrapper.TokenException Maven / Gradle / Ivy

The newest version!
// Copyright (c) 2002 Graz University of Technology. All rights reserved.
// License IAIK PKCS#11 Wrapper License.
//
// Copyright (c) 2022 xipki. All rights reserved.
// License Apache License 2.0

package org.xipki.pkcs11.wrapper;

/**
 * The base class for all exceptions in this package. It is able to wrap another
 * exception from a lower layer.
 *
 * @author Karl Scheibelhofer (SIC)
 * @author Lijun Liao (xipki)
 */
public class TokenException extends Exception {

  /**
   * Constructor taking an exception message.
   *
   * @param message
   *          The message giving details about the exception to ease
   *          debugging.
   */
  public TokenException(String message) {
    super(message);
  }

  /**
   * Constructor taking another exception to wrap.
   *
   * @param encapsulatedException
   *          The other exception the wrap into this.
   */
  public TokenException(Exception encapsulatedException) {
    super(encapsulatedException);
  }

  /**
   * Constructor taking a message for this exception and another exception to
   * wrap.
   *
   * @param message
   *          The message giving details about the exception to ease
   *          debugging.
   * @param encapsulatedException
   *          The other exception the wrap into this.
   */
  public TokenException(String message, Exception encapsulatedException) {
    super(message, encapsulatedException);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy