summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2014-10-01 18:27:03 +0200
committerMichael Stahl <mstahl@redhat.com>2014-10-01 18:28:24 +0200
commit3dc108c8e3df0ec26ef33e83c481eff6d629e5b7 (patch)
tree6dcc84d8dcdd1ea641775de1218ecbe5d4724e01 /svx
parent610544eda1f1add0ba9b184fe7c2bed56f050fc1 (diff)
svx: little more verbose exception message
Change-Id: I93d5d899fa073cd7ed18e9176b50679b0be95f70
Diffstat (limited to 'svx')
-rw-r--r--svx/source/unodraw/unomod.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodraw/unomod.cxx b/svx/source/unodraw/unomod.cxx
index 80999d4ec1ca..45590887cd85 100644
--- a/svx/source/unodraw/unomod.cxx
+++ b/svx/source/unodraw/unomod.cxx
@@ -191,7 +191,7 @@ css::uno::Reference<css::uno::XInterface> create(
uno::Reference< uno::XInterface > xRet( SvxUnoDrawMSFactory::createTextField( rServiceSpecifier ) );
if( !xRet.is() )
- throw lang::ServiceNotRegisteredException();
+ throw lang::ServiceNotRegisteredException("unknown service: " + rServiceSpecifier);
return xRet;
}