diff options
author | Tomas O'Connor <toconnor@openoffice.org> | 2003-02-06 17:21:30 +0000 |
---|---|---|
committer | Tomas O'Connor <toconnor@openoffice.org> | 2003-02-06 17:21:30 +0000 |
commit | 18da28a7f38211dd7f702e2e3acf8d01b53833e1 (patch) | |
tree | ee2d01655c0a9227333171a076f6ea9bd9437b73 /scripting/source | |
parent | 9279facce23c405806317b1e425533d1011dc177 (diff) |
Change error message which for RuntimeException when no runtime is found.
Diffstat (limited to 'scripting/source')
-rwxr-xr-x | scripting/source/runtimemgr/ScriptRuntimeManager.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripting/source/runtimemgr/ScriptRuntimeManager.cxx b/scripting/source/runtimemgr/ScriptRuntimeManager.cxx index 29c547685a06..708b70b4aebb 100755 --- a/scripting/source/runtimemgr/ScriptRuntimeManager.cxx +++ b/scripting/source/runtimemgr/ScriptRuntimeManager.cxx @@ -2,9 +2,9 @@ * * $RCSfile: ScriptRuntimeManager.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: toconnor $ $Date: 2003-01-29 12:58:11 $ + * last change: $Author: toconnor $ $Date: 2003-02-06 18:21:30 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -144,7 +144,7 @@ throw( RuntimeException ) if ( sal_False == ( a >>= xInterface ) ) { throw RuntimeException( - OUSTR( "ScriptRuntimeManager::GetScriptRuntime: could not obtain ScriptRuntimeForJava singleton" ), + sinfo->getLanguage().concat( OUSTR( " runtime support is not installed for this language" ) ), Reference< XInterface >() ); } validateXRef( xInterface, |