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

org.cryptacular.EncodingException Maven / Gradle / Ivy

There is a newer version: 6.2.20
Show newest version
/* See LICENSE for licensing and NOTICE for copyright. */
package org.cryptacular;

/**
 * Runtime error describing an encoding problem of a cryptographic primitive (e.g. private key, X.509 certificate).
 *
 * @author  Middleware Services
 */
public class EncodingException extends RuntimeException
{
  /**
   * Creates a new instance with the given error message.
   *
   * @param  message  Error message.
   */
  public EncodingException(final String message)
  {
    super(message);
  }


  /**
   * Creates a new instance with the given error message and cause.
   *
   * @param  message  Error message.
   * @param  cause  Error cause.
   */
  public EncodingException(final String message, final Throwable cause)
  {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy