mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-12-24 10:17:39 +00:00
Improved error reporting for number format errors.
This commit is contained in:
parent
cf30a63018
commit
feee529095
@ -21,6 +21,7 @@ package com.sk89q.worldedit;
|
|||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
import java.util.regex.Matcher;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.lang.reflect.Method;
|
import java.lang.reflect.Method;
|
||||||
|
|
||||||
@ -1167,6 +1168,8 @@ public class WorldEdit {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static final java.util.regex.Pattern numberFormatExceptionPattern = java.util.regex.Pattern.compile("^For input string: \"(.*)\"$");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param player
|
* @param player
|
||||||
@ -1243,7 +1246,13 @@ public class WorldEdit {
|
|||||||
flushBlockBag(player, editSession);
|
flushBlockBag(player, editSession);
|
||||||
}
|
}
|
||||||
} catch (NumberFormatException e) {
|
} catch (NumberFormatException e) {
|
||||||
|
final Matcher matcher = numberFormatExceptionPattern.matcher(e.getMessage());
|
||||||
|
|
||||||
|
if (matcher.matches()) {
|
||||||
|
player.printError("Number expected; string \""+matcher.group(1)+"\" given.");
|
||||||
|
} else {
|
||||||
player.printError("Number expected; string given.");
|
player.printError("Number expected; string given.");
|
||||||
|
}
|
||||||
} catch (IncompleteRegionException e) {
|
} catch (IncompleteRegionException e) {
|
||||||
player.printError("Make a region selection first.");
|
player.printError("Make a region selection first.");
|
||||||
} catch (UnknownItemException e) {
|
} catch (UnknownItemException e) {
|
||||||
|
Loading…
Reference in New Issue
Block a user