com.fivefaces.structureclient.config.security.NoTokenProvidedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-structure-client Show documentation
Show all versions of common-structure-client Show documentation
structure Client for Five Faces
package com.fivefaces.structureclient.config.security;
import org.springframework.security.authentication.BadCredentialsException;
public class NoTokenProvidedException extends BadCredentialsException {
public NoTokenProvidedException(String message, Throwable e) {
super(message, e);
}
public NoTokenProvidedException(String message) {
super(message);
}
}