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

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

There is a newer version: 1.0.33.rc1
Show newest version
package io.scalecube.security.tokens.jwt;

public final class KeyNotFoundException extends RuntimeException {

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy