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

io.scalecube.security.tokens.jwt.KeyProviderException Maven / Gradle / Ivy

package io.scalecube.security.tokens.jwt;

public final class KeyProviderException extends RuntimeException {

  public KeyProviderException(String s) {
    super(s);
  }

  public KeyProviderException(Throwable cause) {
    super(cause);
  }

  @Override
  public synchronized Throwable fillInStackTrace() {
    return this;
  }

  @Override
  public String toString() {
    return getClass().getSimpleName() + "{errorMessage=" + getMessage() + '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy