8 changed files with 54 additions and 33 deletions
-
2src/main/java/com/corundumstudio/socketio/SocketIOEncoder.java
-
8src/main/java/com/corundumstudio/socketio/annotation/OnConnectScanner.java
-
3src/main/java/com/corundumstudio/socketio/annotation/OnDisconnectScanner.java
-
9src/main/java/com/corundumstudio/socketio/annotation/OnEventScanner.java
-
9src/main/java/com/corundumstudio/socketio/annotation/OnJsonObjectScanner.java
-
9src/main/java/com/corundumstudio/socketio/annotation/OnMessageScanner.java
-
13src/main/java/com/corundumstudio/socketio/handler/PacketHandler.java
-
34src/main/java/com/corundumstudio/socketio/handler/SocketIOException.java
@ -0,0 +1,34 @@ |
|||
/** |
|||
* Copyright 2012 Nikita Koksharov |
|||
* |
|||
* Licensed under the Apache License, Version 2.0 (the "License"); |
|||
* you may not use this file except in compliance with the License. |
|||
* You may obtain a copy of the License at |
|||
* |
|||
* http://www.apache.org/licenses/LICENSE-2.0 |
|||
* |
|||
* Unless required by applicable law or agreed to in writing, software |
|||
* distributed under the License is distributed on an "AS IS" BASIS, |
|||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|||
* See the License for the specific language governing permissions and |
|||
* limitations under the License. |
|||
*/ |
|||
package com.corundumstudio.socketio.handler; |
|||
|
|||
public class SocketIOException extends RuntimeException { |
|||
|
|||
private static final long serialVersionUID = -9218908839842557188L; |
|||
|
|||
public SocketIOException(String message, Throwable cause) { |
|||
super(message, cause); |
|||
} |
|||
|
|||
public SocketIOException(String message) { |
|||
super(message); |
|||
} |
|||
|
|||
public SocketIOException(Throwable cause) { |
|||
super(cause); |
|||
} |
|||
|
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue