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

io.scalecube.security.jwt.AuthenticationException Maven / Gradle / Ivy

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

/**
 * This class encapsulates all authentication exceptions. This will allow us to replace the internal
 * mechanism of authentication without changing client code.
 */
public class AuthenticationException extends RuntimeException {

  public AuthenticationException(String message, Throwable cause) {
    super(message, cause);
  }

  public AuthenticationException(Throwable cause) {
    super(cause.getMessage(), cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy