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.
1 parent cef4311 commit 6cc3d93Copy full SHA for 6cc3d93
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