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

eu.erasmuswithoutpaper.rsaaes.MissingFeature Maven / Gradle / Ivy

Go to download

Encrypt and decrypts data using the ewp-rsa-aes128gcm encryption scheme, as defined here: https://github.com/erasmus-without-paper/ewp-specs-sec-rsa-aes128gcm

There is a newer version: 1.0.1
Show newest version
package eu.erasmuswithoutpaper.rsaaes;

/**
 * Thrown when some of the security algorithms or features required by this library are not properly
 * registered (in general, this shouldn't happen in Java 8).
 */
public class MissingFeature extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public MissingFeature(Exception cause) {
    super(cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy