Author: veithen
Date: Mon Mar 14 19:21:43 2011
New Revision: 1081524

URL: http://svn.apache.org/viewvc?rev=1081524&view=rev
Log:
Fixed the svn:mergeinfo and merged the piece of r1072510 that was missing in 
r1081274.

Modified:
    axis/axis2/java/core/branches/1_6/   (props changed)
    
axis/axis2/java/core/branches/1_6/modules/samples/faulthandling/client/src/example/BankClient.java

Propchange: axis/axis2/java/core/branches/1_6/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Mar 14 19:21:43 2011
@@ -1 +1 @@
-/axis/axis2/java/core/trunk:1070439,1072077,1072271,1072499,1078242
+/axis/axis2/java/core/trunk:1070439,1072077,1072271,1072499,1072510,1078242

Modified: 
axis/axis2/java/core/branches/1_6/modules/samples/faulthandling/client/src/example/BankClient.java
URL: 
http://svn.apache.org/viewvc/axis/axis2/java/core/branches/1_6/modules/samples/faulthandling/client/src/example/BankClient.java?rev=1081524&r1=1081523&r2=1081524&view=diff
==============================================================================
--- 
axis/axis2/java/core/branches/1_6/modules/samples/faulthandling/client/src/example/BankClient.java
 (original)
+++ 
axis/axis2/java/core/branches/1_6/modules/samples/faulthandling/client/src/example/BankClient.java
 Mon Mar 14 19:21:43 2011
@@ -51,10 +51,10 @@ public final class BankClient {
             final WithdrawResponse withdrawResponse = 
bankService.withdraw(withdrawRequest);
             System.out.println("Balance = " + withdrawResponse.getBalance());
             
-        } catch (AccountNotExistFaultMessage e) {
+        } catch (AccountNotExistException e) {
             final AccountNotExistFault fault = e.getFaultMessage();
             System.out.println("Account#" + fault.getAccount() + " does not 
exist");
-        } catch (InsufficientFundFaultMessage e) {
+        } catch (InsufficientFundException e) {
             final InsufficientFundFault fault = e.getFaultMessage();
             System.out.println("Account#" + fault.getAccount() + " has balance 
of " + fault.getBalance() + ". It cannot support withdrawal of " + 
fault.getRequestedFund());
         } catch (RemoteException e) {


Reply via email to