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

net.yadaframework.security.exceptions.InternalAuthenticationException Maven / Gradle / Ivy

There is a newer version: 0.7.7.R4
Show newest version
package net.yadaframework.security.exceptions;

import org.springframework.security.core.userdetails.UsernameNotFoundException;

public class InternalAuthenticationException extends UsernameNotFoundException {
	private static final long serialVersionUID = 1L;

	public InternalAuthenticationException(String msg) {
		super(msg);
	}

	public InternalAuthenticationException(String msg, Throwable t) {
		super(msg, t);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy