mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-07-08 11:32:47 +00:00
SEC-2060: Add constructor with caused by to PreAuthenticatedCredentialsNotFoundException
This commit is contained in:
parent
906da97594
commit
9883c0e60b
@ -8,4 +8,12 @@ public class PreAuthenticatedCredentialsNotFoundException extends Authentication
|
|||||||
super(msg);
|
super(msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param message The message for the Exception
|
||||||
|
* @param cause The Exception that caused this Exception.
|
||||||
|
*/
|
||||||
|
public PreAuthenticatedCredentialsNotFoundException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user