better error report

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1448656 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-02-21 14:36:36 +00:00
parent 7f806d34dc
commit cdb98980d1
1 changed files with 1 additions and 6 deletions

View File

@ -182,15 +182,10 @@ public class DefaultRedbackRuntimeConfigurationService
return Boolean.TRUE; return Boolean.TRUE;
} }
catch ( AuthenticationException e ) catch ( Exception e )
{ {
throw new ArchivaRestServiceException( e.getMessage(), e ); throw new ArchivaRestServiceException( e.getMessage(), e );
} }
catch ( RepositoryAdminException e )
{
throw new ArchivaRestServiceException( e.getMessage(), e );
}
} }
public List<UserManagerImplementationInformation> getUserManagerImplementationInformations() public List<UserManagerImplementationInformation> getUserManagerImplementationInformations()