From ba32cada1b9e033dd01bf9f1e11a50e455728c7d Mon Sep 17 00:00:00 2001 From: snowleo Date: Fri, 13 May 2011 20:41:49 +0000 Subject: [PATCH] Catch the case, if the user does not have a account with Register git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1439 e251c2fe-e539-e718-e476-b85c1f46cddb --- .../src/com/earth2me/essentials/User.java | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Essentials/src/com/earth2me/essentials/User.java b/Essentials/src/com/earth2me/essentials/User.java index 443a6b612..c9ec16d2d 100644 --- a/Essentials/src/com/earth2me/essentials/User.java +++ b/Essentials/src/com/earth2me/essentials/User.java @@ -1,6 +1,7 @@ package com.earth2me.essentials; import com.earth2me.essentials.commands.IEssentialsCommand; +import com.nijikokun.register.payment.Method; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.logging.Logger; @@ -277,7 +278,12 @@ public class User extends UserData implements Comparable, IReplyTo { try { - return ess.getPaymentMethod().getMethod().getAccount(this.getName()).balance(); + Method method = ess.getPaymentMethod().getMethod(); + if (!method.hasAccount(this.getName())) { + throw new Exception(); + } + Method.MethodAccount account = ess.getPaymentMethod().getMethod().getAccount(this.getName()); + return account.balance(); } catch (Throwable ex) { @@ -293,8 +299,13 @@ public class User extends UserData implements Comparable, IReplyTo { try { - double amount = value - ess.getPaymentMethod().getMethod().getAccount(this.getName()).balance(); - ess.getPaymentMethod().getMethod().getAccount(this.getName()).add(amount); + Method method = ess.getPaymentMethod().getMethod(); + if (!method.hasAccount(this.getName())) { + throw new Exception(); + } + Method.MethodAccount account = ess.getPaymentMethod().getMethod().getAccount(this.getName()); + double amount = value - account.balance(); + account.add(amount); } catch (Throwable ex) {