Kaydet (Commit) 22248b89 authored tarafından Robert Antoni Buj i Gelonch's avatar Robert Antoni Buj i Gelonch Kaydeden (comit) Samuel Mehrbrodt

complex: Use 'import com.sun.star.beans.UnknownPropertyException;'

Change-Id: Ib42baf6f18fd407a879313c042efd74c8f724aa4
Reviewed-on: https://gerrit.libreoffice.org/11864Reviewed-by: 's avatarSamuel Mehrbrodt <s.mehrbrodt@gmail.com>
Tested-by: 's avatarSamuel Mehrbrodt <s.mehrbrodt@gmail.com>
üst c2b5affc
......@@ -236,7 +236,7 @@ public class _XAccessibleText {
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
System.out.println("Expected exception");
res &= true;
} catch(com.sun.star.beans.UnknownPropertyException e) {
} catch(UnknownPropertyException e) {
System.out.println("unexpected exception => FAILED");
res &= false;
}
......@@ -249,7 +249,7 @@ public class _XAccessibleText {
} catch(com.sun.star.lang.IndexOutOfBoundsException e) {
System.out.println("Expected exception");
res &= true;
} catch(com.sun.star.beans.UnknownPropertyException e) {
} catch(UnknownPropertyException e) {
System.out.println("unexpected exception => FAILED");
res &= false;
}
......@@ -264,7 +264,7 @@ public class _XAccessibleText {
System.out.println("Unexpected exception");
e.printStackTrace();
res &= false;
} catch(com.sun.star.beans.UnknownPropertyException e) {
} catch(UnknownPropertyException e) {
System.out.println("unexpected exception => FAILED");
res &= false;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment