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

org.whispersystems.curve25519.NoSuchProviderException Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package org.whispersystems.curve25519;

public class NoSuchProviderException extends RuntimeException {

  private final Throwable nested;

  public NoSuchProviderException(Throwable e) {
    this.nested = e;
  }

  public NoSuchProviderException(String type) {
    super(type);
    this.nested = null;
  }

  public Throwable getNested() {
    return nested;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy