We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8090ca + 6cc3d93 commit b55849dCopy full SHA for b55849d
exist-core/src/main/java/org/exist/xquery/TryCatchExpression.java
@@ -530,7 +530,7 @@ private void addFunctionTrace(final Throwable t) throws XPathException {
530
531
private void addJavaTrace(final Throwable t) throws XPathException {
532
final LocalVariable localVar = new LocalVariable(QN_JAVA_STACK_TRACE);
533
- localVar.setSequenceType(new SequenceType(Type.QNAME, Cardinality.ZERO_OR_MORE));
+ localVar.setSequenceType(new SequenceType(Type.STRING, Cardinality.ZERO_OR_MORE));
534
535
final Sequence trace;
536
if (t != null && t.getStackTrace() != null) {
0 commit comments