AuthError.java #1

  • //
  • guest/
  • perforce_software/
  • helix-web-services/
  • main/
  • source/
  • p4base/
  • src/
  • main/
  • java/
  • com/
  • perforce/
  • hws/
  • p4base/
  • AuthError.java
  • View
  • Commits
  • Open Download .zip Download (371 B)
package com.perforce.hws.p4base;

/**
 * These are specific server error cases that we flag as "yes, this is actually
 * an authentication failure".
 *
 * These will likely be converted to 403 instead of 400.
 */
public class AuthError extends ServerErrorException {

    public AuthError(ServerErrorException cause) {
        super(cause.getResultMap(), cause);
    }
}
# Change User Description Committed
#1 19535 drobins Refactor package names to hws
//guest/perforce_software/helix-web-services/main/source/p4base/src/main/java/com/perforce/helix_web_services/p4base/AuthError.java
#1 17140 tjuricek Integrating porting work from development branch.

This work is now ready for testing/CD integration.