summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsb <sb@openoffice.org>2010-09-21 10:23:23 +0200
committersb <sb@openoffice.org>2010-09-21 10:23:23 +0200
commit5960ba977af097ea917ffe59b954d8d75771e900 (patch)
treed5fed14693c2586bc1f6db89c4f99d5d2319d75a
parentcfc7bd1807c2727f6da4a1f46cfe04ae92813914 (diff)
sb123: #i111449# relax expected exception type (some platforms apparently throw InteractiveNetworkConnectException instead of InteractiveNetworkResolveNameException here)
-rwxr-xr-xucb/qa/complex/ucb/UCB.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/qa/complex/ucb/UCB.java b/ucb/qa/complex/ucb/UCB.java
index fc9c743d39..7ae46c4f97 100755
--- a/ucb/qa/complex/ucb/UCB.java
+++ b/ucb/qa/complex/ucb/UCB.java
@@ -231,7 +231,7 @@ public class UCB {
} catch (com.sun.star.lang.IllegalArgumentException ex) {
//TODO error message;
System.out.println("Correct exception thrown: " + ex.getClass().toString());
- } catch(com.sun.star.ucb.InteractiveNetworkResolveNameException ex) {
+ } catch(com.sun.star.ucb.InteractiveNetworkException ex) {
System.out.println("This Exception is correctly thrown when no Proxy in StarOffice is used.");
System.out.println("To reproduce the bug behaviour, use a Proxy and try again.");
} catch (Exception ex) {