Added short overflow check for schematic saving.

This commit is contained in:
sk89q
2010-10-04 17:00:54 -07:00
parent 713f23d0de
commit 414c3cf33d
3 changed files with 25 additions and 12 deletions

View File

@ -23,8 +23,8 @@ package com.sk89q.worldedit;
*
* @author Albert
*/
public class SchematicLoadException extends WorldEditException {
public SchematicLoadException(String error) {
public class SchematicException extends WorldEditException {
public SchematicException(String error) {
super(error);
}
}