1 package com.atlassian.plugins.rest.common.security;
2
3 import javax.ws.rs.WebApplicationException;
4 import javax.ws.rs.core.Response;
5
6 /**
7 * Thrown when a Cors preflight check has completed and is ready to be returned to the browser
8 *
9 * @since 2.6
10 */
11 public class CorsPreflightCheckCompleteException extends WebApplicationException
12 {
13 public CorsPreflightCheckCompleteException(Response response)
14 {
15 super(response);
16 }
17 }