WebSocketSocket/client/src/main/java/com/moparisthebest/websocket/WebSocketSocketException.java

55 lines
1.7 KiB
Java

/*
* WebSocketSocket implements a custom java.net.Socket over top of a
* WebSocket, and also a server component that accepts a WebSocket
* connection and connects to a host/port.
* Copyright (C) 2016 Travis Burtrum (moparisthebest)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package com.moparisthebest.websocket;
import java.net.SocketException;
/**
* Created by mopar on 8/30/16.
*/
public class WebSocketSocketException extends SocketException {
private final String url;
public WebSocketSocketException(String reason) {
this(reason, (String) null);
}
public WebSocketSocketException(String reason, final Throwable cause) {
this(reason, (String) null);
initCause(cause);
}
public WebSocketSocketException(String reason, final String url) {
super(reason);
this.url = url;
}
@Override
public String toString() {
if (url == null) {
return super.toString();
} else {
return super.toString() + " (url: " + url + ")";
}
}
}