forked from Gottox/socket.io-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSocketIOException.java
More file actions
38 lines (34 loc) · 793 Bytes
/
SocketIOException.java
File metadata and controls
38 lines (34 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* socket.io-java-client SocketIOException.java
*
* Copyright (c) 2012, Enno Boland
* socket.io-java-client is a implementation of the socket.io protocol in Java.
*
* See LICENSE file for more information
*/
package io.socket;
/**
* The Class SocketIOException.
*/
public class SocketIOException extends Exception {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = 4965561569568761814L;
/**
* Instantiates a new SocketIOException.
*
* @param message
* the message
*/
public SocketIOException(String message) {
super(message);
}
/**
* Instantiates a new SocketIOException.
*
* @param ex
* the exception.
*/
public SocketIOException(String message, Exception ex) {
super(message, ex);
}
}