summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/IUser.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/api/IUser.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/api/IUser.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/api/IUser.java b/Essentials/src/com/earth2me/essentials/api/IUser.java
index 7217c3989..52f936fb7 100644
--- a/Essentials/src/com/earth2me/essentials/api/IUser.java
+++ b/Essentials/src/com/earth2me/essentials/api/IUser.java
@@ -1,5 +1,6 @@
package com.earth2me.essentials.api;
+import com.earth2me.essentials.ChargeException;
import com.earth2me.essentials.storage.IStorageObjectHolder;
import com.earth2me.essentials.user.CooldownException;
import com.earth2me.essentials.user.UserData;
@@ -30,9 +31,9 @@ public interface IUser extends Player, IStorageObjectHolder<UserData>, IReload,
void giveMoney(double value, CommandSender initiator);
- void giveItems(ItemStack itemStack, Boolean canSpew);
+ void giveItems(ItemStack itemStack, Boolean canSpew) throws ChargeException;
- void giveItems(List<ItemStack> itemStacks, Boolean canSpew);
+ void giveItems(List<ItemStack> itemStacks, Boolean canSpew) throws ChargeException;
void setMoney(double value);