mirror of
https://github.com/moparisthebest/MoparClassic
synced 2024-12-21 06:58:55 -05:00
Added NYI error.
This commit is contained in:
parent
7629871bc7
commit
b2f24bf611
@ -4,6 +4,8 @@ import java.io.File;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import net.jcip.annotations.ThreadSafe;
|
||||
|
||||
import org.moparscape.msc.gs.external.*;
|
||||
import org.moparscape.msc.gs.model.InvItem;
|
||||
import org.moparscape.msc.gs.model.Point;
|
||||
@ -19,7 +21,9 @@ import org.moparscape.msc.gs.phandler.PacketHandlerDef;
|
||||
@ThreadSafe
|
||||
public class BinaryUsingNIO implements DataStore {
|
||||
|
||||
protected BinaryUsingNIO() {}
|
||||
protected BinaryUsingNIO() throws Exception {
|
||||
throw new Exception("Not yet implemented!");
|
||||
}
|
||||
|
||||
@Override
|
||||
public PacketHandlerDef[] loadPacketHandlerDefs() throws Exception {
|
||||
|
Loading…
Reference in New Issue
Block a user