Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/UpgradeException.java')
-rw-r--r--jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/UpgradeException.java62
1 files changed, 0 insertions, 62 deletions
diff --git a/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/UpgradeException.java b/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/UpgradeException.java
deleted file mode 100644
index 17de1e7cce..0000000000
--- a/jetty-websocket/websocket-api/src/main/java/org/eclipse/jetty/websocket/api/UpgradeException.java
+++ /dev/null
@@ -1,62 +0,0 @@
-//
-// ========================================================================
-// Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
-// ------------------------------------------------------------------------
-// All rights reserved. This program and the accompanying materials
-// are made available under the terms of the Eclipse Public License v1.0
-// and Apache License v2.0 which accompanies this distribution.
-//
-// The Eclipse Public License is available at
-// http://www.eclipse.org/legal/epl-v10.html
-//
-// The Apache License v2.0 is available at
-// http://www.opensource.org/licenses/apache2.0.php
-//
-// You may elect to redistribute this code under either of these licenses.
-// ========================================================================
-//
-
-package org.eclipse.jetty.websocket.api;
-
-import java.net.URI;
-
-/**
- * Exception during WebSocket Upgrade Handshake.
- */
-@SuppressWarnings("serial")
-public class UpgradeException extends WebSocketException
-{
- private final URI requestURI;
- private final int responseStatusCode;
-
- public UpgradeException(URI requestURI, int responseStatusCode, String message)
- {
- super(message);
- this.requestURI = requestURI;
- this.responseStatusCode = responseStatusCode;
- }
-
- public UpgradeException(URI requestURI, int responseStatusCode, String message, Throwable cause)
- {
- super(message,cause);
- this.requestURI = requestURI;
- this.responseStatusCode = responseStatusCode;
- }
-
- public UpgradeException(URI requestURI, Throwable cause)
- {
- super(cause);
- this.requestURI = requestURI;
- this.responseStatusCode = -1;
- }
-
- public URI getRequestURI()
- {
- return requestURI;
- }
-
- public int getResponseStatusCode()
- {
- return responseStatusCode;
- }
-}

Back to the top