summaryrefslogtreecommitdiff
path: root/accessibility
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-11-27 09:15:14 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-11-27 09:15:14 +0100
commit382421189fd7cd421b82d3397dad6860cd6536e8 (patch)
tree13eddc50a27b6924823319bbf08300c0bfa9f6ea /accessibility
parent1533129759c0017413efe2213bfe503c26dc16f0 (diff)
Improve exception message
Change-Id: I06ffe3088546d55b29d61ccfae16937d8a7ce9e8
Diffstat (limited to 'accessibility')
-rw-r--r--accessibility/source/standard/vclxaccessiblebox.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/accessibility/source/standard/vclxaccessiblebox.cxx b/accessibility/source/standard/vclxaccessiblebox.cxx
index 764c0caae9df..dbb5dcdd8fe2 100644
--- a/accessibility/source/standard/vclxaccessiblebox.cxx
+++ b/accessibility/source/standard/vclxaccessiblebox.cxx
@@ -422,7 +422,11 @@ sal_Bool SAL_CALL VCLXAccessibleBox::doAccessibleAction (sal_Int32 nIndex)
::osl::Guard< ::osl::Mutex > aGuard( GetMutex() );
if (nIndex<0 || nIndex>=getAccessibleActionCount())
- throw ::com::sun::star::lang::IndexOutOfBoundsException();
+ throw ::com::sun::star::lang::IndexOutOfBoundsException(
+ ("VCLXAccessibleBox::doAccessibleAction: index "
+ + OUString::number(nIndex) + " not among 0.."
+ + OUString::number(getAccessibleActionCount())),
+ static_cast<OWeakObject*>(this));
if (m_aBoxType == COMBOBOX)
{