diff options
author | sb <sb@openoffice.org> | 2010-09-21 10:23:23 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-09-21 10:23:23 +0200 |
commit | f0c8cd0ec5fbd30e2eea435872c4541fcfe3c9f3 (patch) | |
tree | 7a2e918b2aa5c383e1b7eaafabb381ed144cff48 /ucb/qa | |
parent | 8baa98fb42161e9ee4ed3aababe87aade353e0fb (diff) |
sb123: #i111449# relax expected exception type (some platforms apparently throw InteractiveNetworkConnectException instead of InteractiveNetworkResolveNameException here)
Diffstat (limited to 'ucb/qa')
-rwxr-xr-x | ucb/qa/complex/ucb/UCB.java | 2 |
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) { |