for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package unicon.matthews.security.exception;
import org.springframework.security.authentication.AuthenticationServiceException;
/**
*
* @author vladimir.stankovic
* Aug 4, 2016
*/
public class AuthMethodNotSupportedException extends AuthenticationServiceException {
private static final long serialVersionUID = 3705043083010304496L;
public AuthMethodNotSupportedException(String msg) {
super(msg);
}