move package name

This commit is contained in:
nkzawa
2015-08-31 02:34:28 +09:00
parent 411001a04f
commit acddf2f69c
35 changed files with 110 additions and 108 deletions

View File

@@ -0,0 +1,24 @@
package io.socket.utf8;
import java.io.IOException;
public class UTF8Exception extends IOException {
public String data;
public UTF8Exception() {
super();
}
public UTF8Exception(String message) {
super(message);
}
public UTF8Exception(String message, Throwable cause) {
super(message, cause);
}
public UTF8Exception(Throwable cause) {
super(cause);
}
}