Throw old DataExceptions in schematic related classes.

The schematic related classes are slated for deprecation at some point.
This commit is contained in:
sk89q
2014-04-04 13:59:28 -07:00
parent 3294431e00
commit 224bfef50c
3 changed files with 26 additions and 34 deletions

View File

@ -24,4 +24,11 @@ package com.sk89q.worldedit.data;
*/
@Deprecated
public class DataException extends com.sk89q.worldedit.world.DataException {
public DataException(String msg) {
super(msg);
}
public DataException() {
}
}