extend constructor to preserve stack trace

git-svn-id: https://svn.apache.org/repos/asf/archiva/redback/redback-core/trunk@1374659 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-08-18 21:33:02 +00:00
parent ac5290938a
commit ed736a7bd3
1 changed files with 6 additions and 0 deletions

View File

@ -35,4 +35,10 @@ public class UnauthorizedException
{
super( message );
}
public UnauthorizedException( String message, Throwable t )
{
super( message );
}
}