forked from IQSS/dataverse
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename AuthenticationProviderFactoryNotFoundException to Authenticati…
…onProviderConfigurationException as we remove the current factory pattern, remove invalid catch in Admin API. IQSS#6694
- Loading branch information
1 parent
f840b82
commit 6189053
Showing
4 changed files
with
17 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...d/iq/dataverse/authorization/exceptions/AuthenticationProviderConfigurationException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package edu.harvard.iq.dataverse.authorization.exceptions; | ||
|
||
import edu.harvard.iq.dataverse.authorization.providers.AuthenticationProvider; | ||
import edu.harvard.iq.dataverse.authorization.providers.AuthenticationProviderFactory; | ||
import edu.harvard.iq.dataverse.authorization.providers.AuthenticationProviderRow; | ||
|
||
/** | ||
* Thrown when trying to build an {@link AuthenticationProviderConfiguration}, but failing. | ||
*/ | ||
public class AuthenticationProviderConfigurationException extends AuthorizationSetupException { | ||
public AuthenticationProviderConfigurationException(String cause) { | ||
super(cause); | ||
} | ||
} |
29 changes: 0 additions & 29 deletions
29
...iq/dataverse/authorization/exceptions/AuthenticationProviderFactoryNotFoundException.java
This file was deleted.
Oops, something went wrong.