1   package com.atlassian.security.auth.trustedapps;
2   
3   import com.atlassian.security.auth.trustedapps.TransportErrorMessage.Code;
4   
5   /**
6    * Thrown if an IP address in an X-Forwarded-For header doesn't match
7    */
8   public class InvalidXForwardedForAddressException extends InvalidIPAddressException
9   {
10      public InvalidXForwardedForAddressException(String ipAddress)
11      {
12          super(Code.BAD_XFORWARD_IP, ipAddress);
13      }
14  }