summaryrefslogtreecommitdiff
path: root/ucb
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
commitf0c8cd0ec5fbd30e2eea435872c4541fcfe3c9f3 (patch)
tree7a2e918b2aa5c383e1b7eaafabb381ed144cff48 /ucb
parent8baa98fb42161e9ee4ed3aababe87aade353e0fb (diff)
sb123: #i111449# relax expected exception type (some platforms apparently throw InteractiveNetworkConnectException instead of InteractiveNetworkResolveNameException here)
Diffstat (limited to 'ucb')
-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 c027dd95bb37..445525927703 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) {