GUAC-1364: GuacamoleCredentialsException should be a GuacamoleUnauthorizedException (not just a generic "security" exception).

This commit is contained in:
Michael Jumper
2015-10-15 15:13:31 -07:00
parent f5e5e90158
commit 51712f2727

View File

@@ -22,7 +22,7 @@
package org.glyptodon.guacamole.net.auth.credentials; package org.glyptodon.guacamole.net.auth.credentials;
import org.glyptodon.guacamole.GuacamoleSecurityException; import org.glyptodon.guacamole.GuacamoleUnauthorizedException;
/** /**
* A security-related exception thrown when access is denied to a user because * A security-related exception thrown when access is denied to a user because
@@ -31,7 +31,7 @@ import org.glyptodon.guacamole.GuacamoleSecurityException;
* *
* @author Michael Jumper * @author Michael Jumper
*/ */
public class GuacamoleCredentialsException extends GuacamoleSecurityException { public class GuacamoleCredentialsException extends GuacamoleUnauthorizedException {
/** /**
* Information describing the form of valid credentials. * Information describing the form of valid credentials.