Difference between revisions of "XQuery Errors"

From BaseX Documentation
Jump to navigation Jump to search
Line 18: Line 18:
 
==BaseX Errors==
 
==BaseX Errors==
  
Error Codes: <code>BASX</code>
+
Error Codes: {{Code|BASX}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 25: Line 25:
 
! width="35%"|Examples
 
! width="35%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>BASX0000</code>
+
|{{Code|BASX0000}}
 
| Generic error, which is used for exceptions in [[Java Bindings#Context-Awareness|context-aware Java bindings]].
 
| Generic error, which is used for exceptions in [[Java Bindings#Context-Awareness|context-aware Java bindings]].
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>BASX0001</code>
+
|{{Code|BASX0001}}
 
| The current user has insufficient [[User Management|permissions]] to execute an expression.
 
| The current user has insufficient [[User Management|permissions]] to execute an expression.
|<code>file:delete('file.txt')</code>: ''Create'' rights needed.
+
|{{Code|file:delete('file.txt')}}: ''Create'' rights needed.
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>BASX0002</code>
+
|{{Code|BASX0002}}
 
| The specified database option is unknown.
 
| The specified database option is unknown.
| <code>declare option db:xyz "no"; 1</code>
+
| {{Code|declare option db:xyz "no"; 1}}
 
|}
 
|}
  
 
==Static Errors==
 
==Static Errors==
  
Error Codes: <code>XPST</code>, <code>XQST</code>
+
Error Codes: {{Code|XPST}}, {{Code|XQST}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 47: Line 47:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0003</code>
+
|{{Code|XPST0003}}
 
|An error occurred while ''parsing'' the query string (i.e., before the query could be compiled and executed). This error is the most common one, and may be accompanied by a variety of different error messages.  
 
|An error occurred while ''parsing'' the query string (i.e., before the query could be compiled and executed). This error is the most common one, and may be accompanied by a variety of different error messages.  
|<code>1+<hr/>for i in //* return $i</code>
+
|{{Code|1+<hr/>for i in //* return $i}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0005</code>
+
|{{Code|XPST0005}}
 
|An expression will never results, no matter what input will be processed.
 
|An expression will never results, no matter what input will be processed.
|<code>doc('input')/..</code>
+
|{{Code|doc('input')/..}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0008</code>
+
|{{Code|XPST0008}}
 
|A variable or type name is used that has not been defined in the current scope.
 
|A variable or type name is used that has not been defined in the current scope.
|<code>$a---<hr/>element(*, x)</code>
+
|{{Code|$a---<hr/>element(*, x)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0017</code>
+
|{{Code|XPST0017}}
 
| • The specified function is unknown, or<br />• it uses the wrong number of arguments.
 
| • The specified function is unknown, or<br />• it uses the wrong number of arguments.
|<code>unknown()<hr/>count(1,2,3)</code>
+
|{{Code|unknown()<hr/>count(1,2,3)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0051</code>
+
|{{Code|XPST0051}}
| An unknown QName is used in a ''sequence type'' (e.g. in the target type of the <code>cast</code> expression).
+
| An unknown QName is used in a ''sequence type'' (e.g. in the target type of the {{Code|cast}} expression).
|<code>1 instance of x<hr/>"test"&nbsp;cast&nbsp;as&nbsp;xs:itr</code>
+
|{{Code|1 instance of x<hr/>"test"&nbsp;cast&nbsp;as&nbsp;xs:itr}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0080</code>
+
|{{Code|XPST0080}}
| <code>xs:NOTATION</code> or <code>xs:anyAtomicType</code> is used as target type of <code>cast</code> or <code>castable</code>.
+
| {{Code|xs:NOTATION}} or {{Code|xs:anyAtomicType}} is used as target type of {{Code|cast}} or {{Code|castable}}.
|<code>1 castable as xs:NOTATION</code>
+
|{{Code|1 castable as xs:NOTATION}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPST0081</code>
+
|{{Code|XPST0081}}
 
| • A QName uses a prefix that has not been bound to any namespace, or<br />• a pragma or option declaration has not been prefixed.
 
| • A QName uses a prefix that has not been bound to any namespace, or<br />• a pragma or option declaration has not been prefixed.
 
|<code>unknown:x<hr/>(# pragma #) { 1 }</code>
 
|<code>unknown:x<hr/>(# pragma #) { 1 }</code>
Line 77: Line 77:
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0009</code>
+
|{{Code|XQST0009}}
 
| The query imports a schema (schema import is not supported by BaseX).
 
| The query imports a schema (schema import is not supported by BaseX).
|<code>import schema "x"; ()</code>
+
|{{Code|import schema "x"; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0022</code>
+
|{{Code|XQST0022}}
 
| Namespace values must be constant strings.
 
| Namespace values must be constant strings.
 
|<code><elem xmlns="{ 'dynamic' }"/></code>
 
|<code><elem xmlns="{ 'dynamic' }"/></code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0031</code>
+
|{{Code|XQST0031}}
 
| The specified XQuery version is not specified.
 
| The specified XQuery version is not specified.
|<code>xquery version "9.9"; ()</code>
+
|{{Code|xquery version "9.9"; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0032</code>
+
|{{Code|XQST0032}}
 
| The base URI was declared more than once.
 
| The base URI was declared more than once.
|<code>declare base-uri ...</code>
+
|{{Code|declare base-uri ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0033</code>
+
|{{Code|XQST0033}}
 
| A namespace prefix was declared more than once.
 
| A namespace prefix was declared more than once.
|<code>declare namespace a="a";<br/>declare namespace a="b"; ()</code>
+
|{{Code|declare namespace a="a";<br/>declare namespace a="b"; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0034</code>
+
|{{Code|XQST0034}}
 
| A function was declared more than once.
 
| A function was declared more than once.
 
|<code>declare function local:a() { 1 };<br/>declare function local:a() { 2 }; local:a()</code>
 
|<code>declare function local:a() { 1 };<br/>declare function local:a() { 2 }; local:a()</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0038</code>
+
|{{Code|XQST0038}}
 
| The default collation was declared more than once.
 
| The default collation was declared more than once.
|<code>declare default collation ...</code>
+
|{{Code|declare default collation ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0039</code>
+
|{{Code|XQST0039}}
 
| Two or more parameters in a user-defined function have the same name.
 
| Two or more parameters in a user-defined function have the same name.
 
|<code>declare function local:fun($a, $a) { $a * $a };<br/>local:fun(1,2)</code>
 
|<code>declare function local:fun($a, $a) { $a * $a };<br/>local:fun(1,2)</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0040</code>
+
|{{Code|XQDY0040}}
 
| Two or more attributes in an element have the same node name.
 
| Two or more attributes in an element have the same node name.
|<code><elem a="1" a="12"/></code>
+
|{{Code|<elem a="1" a="12"/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0045</code>
+
|{{Code|XQDY0045}}
 
| A user-defined function uses a reserved namespace.
 
| A user-defined function uses a reserved namespace.
 
|<code>declare function fn:fun() { 1 }; ()</code>
 
|<code>declare function fn:fun() { 1 }; ()</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0047</code>
+
|{{Code|XQST0047}}
 
| A module was defined more than once.
 
| A module was defined more than once.
|<code>import module ...</code>
+
|{{Code|import module ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0048</code>
+
|{{Code|XQST0048}}
 
| A module declaration does not match the namespace of the specified module.
 
| A module declaration does not match the namespace of the specified module.
|<code>import module namespace invalid="uri"; 1</code>
+
|{{Code|import module namespace invalid="uri"; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0049</code>
+
|{{Code|XQST0049}}
 
| A global variable was declared more than once.
 
| A global variable was declared more than once.
|<code>declare variable $a := 1;<br/>declare variable $a := 1; $a</code>
+
|{{Code|declare variable $a := 1;<br/>declare variable $a := 1; $a}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0054</code>
+
|{{Code|XQST0054}}
 
| A global variable depends on itself. This may be triggered by a circular variable definition.
 
| A global variable depends on itself. This may be triggered by a circular variable definition.
 
|<code>declare variable $a := local:a();<br/>declare function local:a() { $a }; $a</code>
 
|<code>declare variable $a := local:a();<br/>declare function local:a() { $a }; $a</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0055</code>
+
|{{Code|XQST0055}}
 
| The mode for copying namespaces was declared more than once.
 
| The mode for copying namespaces was declared more than once.
|<code>declare copy-namespaces ...</code>
+
|{{Code|declare copy-namespaces ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0057</code>
+
|{{Code|XQST0057}}
 
| The namespace of a schema import may not be empty.
 
| The namespace of a schema import may not be empty.
|<code>import schema ""; ()</code>
+
|{{Code|import schema ""; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0059</code>
+
|{{Code|XQST0059}}
 
| The schema or module with the specified namespace cannot be found or processed.
 
| The schema or module with the specified namespace cannot be found or processed.
|<code>import module "unknown"; ()</code>
+
|{{Code|import module "unknown"; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0060</code>
+
|{{Code|XQST0060}}
 
| A user-defined function has no namespace.
 
| A user-defined function has no namespace.
 
|<code>declare default function namespace "";<br/>declare function x() { 1 }; 1</code>
 
|<code>declare default function namespace "";<br/>declare function x() { 1 }; 1</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0065</code>
+
|{{Code|XQST0065}}
 
| The ordering mode was declared more than once.
 
| The ordering mode was declared more than once.
|<code>declare ordering ...</code>
+
|{{Code|declare ordering ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0065</code>
+
|{{Code|XQST0065}}
 
| The default namespace mode for elements or functions was declared more than once.
 
| The default namespace mode for elements or functions was declared more than once.
|<code>declare default element namespace ...</code>
+
|{{Code|declare default element namespace ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0067</code>
+
|{{Code|XQST0067}}
 
| The construction mode was declared more than once.
 
| The construction mode was declared more than once.
|<code>declare construction ...</code>
+
|{{Code|declare construction ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0068</code>
+
|{{Code|XQST0068}}
 
| The mode for handling boundary spaces was declared more than once.
 
| The mode for handling boundary spaces was declared more than once.
|<code>declare boundary-space ...</code>
+
|{{Code|declare boundary-space ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0069</code>
+
|{{Code|XQST0069}}
 
| The default order for empty sequences was declared more than once.
 
| The default order for empty sequences was declared more than once.
|<code>declare default order empty ...</code>
+
|{{Code|declare default order empty ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0070</code>
+
|{{Code|XQST0070}}
 
| A namespace declaration overwrites a reserved namespace.
 
| A namespace declaration overwrites a reserved namespace.
|<code>declare namespace xml=""; ()</code>
+
|{{Code|declare namespace xml=""; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0071</code>
+
|{{Code|XQST0071}}
 
| A namespace is declared more than once in an element constructor.
 
| A namespace is declared more than once in an element constructor.
|<code><a xmlns="uri1" xmlns="uri2"/></code>
+
|{{Code|<a xmlns="uri1" xmlns="uri2"/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0075</code>
+
|{{Code|XQST0075}}
 
| The query contains a validate expression (validation is not supported by BaseX).
 
| The query contains a validate expression (validation is not supported by BaseX).
 
|<code>validate strict { () }</code>
 
|<code>validate strict { () }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0076</code>
+
|{{Code|XQST0076}}
| A <code>group by</code> or <code>order by</code> clause specifies an unknown collation.
+
| A {{Code|group by}} or {{Code|order by}} clause specifies an unknown collation.
|<code>for $i in 1 to 10<br/>order by $i collation "unknown"<br/>return $i</code>
+
|{{Code|for $i in 1 to 10<br/>order by $i collation "unknown"<br/>return $i}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0079</code>
+
|{{Code|XQST0079}}
 
| A pragma was specified without the expression that is to be evaluated.
 
| A pragma was specified without the expression that is to be evaluated.
 
|<code>(# xml:a #) {}</code>
 
|<code>(# xml:a #) {}</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0085</code>
+
|{{Code|XQST0085}}
 
| An empty namespace URI was specified.
 
| An empty namespace URI was specified.
|<code><pref:elem xmlns:pref=""/></code>
+
|{{Code|<pref:elem xmlns:pref=""/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0087</code>
+
|{{Code|XQST0087}}
 
| An unknown encoding was specified. Note that the encoding declaration is currently ignored in BaseX.
 
| An unknown encoding was specified. Note that the encoding declaration is currently ignored in BaseX.
|<code>xquery version "1.0" encoding "a b"; ()</code>
+
|{{Code|xquery version "1.0" encoding "a b"; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0088</code>
+
|{{Code|XQST0088}}
 
| An empty module namespace was specified.
 
| An empty module namespace was specified.
|<code>import module ""; ()</code>
+
|{{Code|import module ""; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0089</code>
+
|{{Code|XQST0089}}
| Two variables in a <code>for</code> or <code>let</code> clause have the same name.
+
| Two variables in a {{Code|for}} or {{Code|let}} clause have the same name.
|<code>for $a at $a in 1 return $i</code>
+
|{{Code|for $a at $a in 1 return $i}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0090</code>
+
|{{Code|XQST0090}}
 
| A character reference specifies an invalid character.
 
| A character reference specifies an invalid character.
|<code>"&#0;"</code>
+
|{{Code|"&#0;"}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0093</code>
+
|{{Code|XQST0093}}
 
| A module depends on itself. This may be triggered by a circular module definition.
 
| A module depends on itself. This may be triggered by a circular module definition.
|<code>import module ...</code>
+
|{{Code|import module ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0094</code>
+
|{{Code|XQST0094}}
| <code>group by</code> references a variable that has not been declared before.
+
| {{Code|group by}} references a variable that has not been declared before.
|<code>for $a in 1 group by $b return $a</code>
+
|{{Code|for $a in 1 group by $b return $a}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0097</code>
+
|{{Code|XQST0097}}
| A <code>decimal-format</code> property is invalid.
+
| A {{Code|decimal-format}} property is invalid.
|<code>declare default decimal-format digit = "xxx"; 1</code>
+
|{{Code|declare default decimal-format digit = "xxx"; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0098</code>
+
|{{Code|XQST0098}}
| A single <code>decimal-format</code> character was assigned to multiple properties.
+
| A single {{Code|decimal-format}} character was assigned to multiple properties.
|<code>declare default decimal-format digit = "%"; 1</code>
+
|{{Code|declare default decimal-format digit = "%"; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0099</code>
+
|{{Code|XQST0099}}
 
| The context item was declared more than once.
 
| The context item was declared more than once.
|<code>declare context item ...</code>
+
|{{Code|declare context item ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0107</code>
+
|{{Code|XQST0107}}
 
| The initializer of the context item depends on itself.
 
| The initializer of the context item depends on itself.
|<code>declare context item := .; ()</code>
+
|{{Code|declare context item := .; ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0108</code>
+
|{{Code|XQST0108}}
 
| Output declarations may only be specified in the main module.
 
| Output declarations may only be specified in the main module.
|Module: <code>declare output ...</code>
+
|Module: {{Code|declare output ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0109</code>
+
|{{Code|XQST0109}}
 
| The specified serialization parameter is unknown.
 
| The specified serialization parameter is unknown.
|<code>declare option output:unknown "..."; 1</code>
+
|{{Code|declare option output:unknown "..."; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0110</code>
+
|{{Code|XQST0110}}
 
| A serialization parameter was specified more than once in the output declarations.
 
| A serialization parameter was specified more than once in the output declarations.
|<code>declare option output:indent "no";<br/>declare option output:indent "no"; 1</code>
+
|{{Code|declare option output:indent "no";<br/>declare option output:indent "no"; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0111</code>
+
|{{Code|XQST0111}}
 
| A decimal format was declared more than once.
 
| A decimal format was declared more than once.
|<code>declare decimal-format ...</code>
+
|{{Code|declare decimal-format ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0113</code>
+
|{{Code|XQST0113}}
 
| Context item values may only be in the main module.
 
| Context item values may only be in the main module.
|Module: <code>declare context item := 1;</code>
+
|Module: {{Code|declare context item := 1;}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQST0114</code>
+
|{{Code|XQST0114}}
 
| A decimal-format property has been specified more than once.
 
| A decimal-format property has been specified more than once.
|<code>declare decimal-format EN NaN="!" NaN="?"; ()</code>
+
|{{Code|declare decimal-format EN NaN="!" NaN="?"; ()}}
 
|}
 
|}
  
 
==Type Errors==
 
==Type Errors==
  
Error Codes: <code>XPTY</code>, <code>XQTY</code>
+
Error Codes: {{Code|XPTY}}, {{Code|XQTY}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 268: Line 268:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPTY0004</code>
+
|{{Code|XPTY0004}}
 
| This error is raised if an expression has the wrong type, or cannot be cast into the specified type. It may be raised both statically (during query compilation) or dynamically (at runtime).
 
| This error is raised if an expression has the wrong type, or cannot be cast into the specified type. It may be raised both statically (during query compilation) or dynamically (at runtime).
|<code>1 + "A"<hr/>abs("a")<hr/>1 cast as xs:gYear</code>
+
|{{Code|1 + "A"<hr/>abs("a")<hr/>1 cast as xs:gYear}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPTY0018</code>
+
|{{Code|XPTY0018}}
 
| The result of the last step in a path expression contains both nodes and atomic values.
 
| The result of the last step in a path expression contains both nodes and atomic values.
|<code>doc('input.xml')/(*, 1)</code>
+
|{{Code|doc('input.xml')/(*, 1)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPTY0019</code>
+
|{{Code|XPTY0019}}
 
| The result of a step (other than the last step) in a path expression contains an atomic values.
 
| The result of a step (other than the last step) in a path expression contains an atomic values.
|<code>(1 to 10)/*</code>
+
|{{Code|(1 to 10)/*}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQTY0024</code>
+
|{{Code|XQTY0024}}
 
| An attribute node cannot be bound to its parent element, as other nodes of a different type were specified before.
 
| An attribute node cannot be bound to its parent element, as other nodes of a different type were specified before.
 
|<code><elem>text { attribute a { "val" } }</elem></code>
 
|<code><elem>text { attribute a { "val" } }</elem></code>
Line 289: Line 289:
 
==Dynamic Errors==
 
==Dynamic Errors==
  
Error Codes: <code>XPDY</code>, <code>XQDY</code>
+
Error Codes: {{Code|XPDY}}, {{Code|XQDY}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 296: Line 296:
 
! width="35%"|Examples
 
! width="35%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPDY0002</code>
+
|{{Code|XPDY0002}}
 
| • No value has been defined for an external variable, or<br />• no context item has been set before the query was executed.
 
| • No value has been defined for an external variable, or<br />• no context item has been set before the query was executed.
|<code>declare variable $x external; $x<hr/>descendant::*</code>
+
|{{Code|declare variable $x external; $x<hr/>descendant::*}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XPDY0050</code>
+
|{{Code|XPDY0050}}
| • The operand type of a <code>treat</code> expression does not match the type of the argument, or<br/>• the root of the context item must be a document node.
+
| • The operand type of a {{Code|treat}} expression does not match the type of the argument, or<br/>• the root of the context item must be a document node.
|<code>"string" treat as xs:int<hr/>"string"[/]</code>
+
|{{Code|"string" treat as xs:int<hr/>"string"[/]}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0025</code>
+
|{{Code|XQDY0025}}
 
| Two or more attributes in a constructed element have the same node name.
 
| Two or more attributes in a constructed element have the same node name.
 
|<code>element x { attribute a { "" } attribute a { "" } }</code>
 
|<code>element x { attribute a { "" } attribute a { "" } }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0026</code>
+
|{{Code|XQDY0026}}
 
| The content of a computed processing instruction contains "?>".
 
| The content of a computed processing instruction contains "?>".
 
|<code>processing-instruction pi { "?>" }</code>
 
|<code>processing-instruction pi { "?>" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0041</code>
+
|{{Code|XQDY0041}}
 
| The name of a processing instruction is invalid.
 
| The name of a processing instruction is invalid.
 
|<code>processing-instruction { "1" } { "" }</code>
 
|<code>processing-instruction { "1" } { "" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0043</code>
+
|{{Code|XQDY0043}}
 
| The node name of an attribute uses reserved prefixes or namespaces.
 
| The node name of an attribute uses reserved prefixes or namespaces.
 
|<code>attribute xmlns { "etc" }</code>
 
|<code>attribute xmlns { "etc" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0064</code>
+
|{{Code|XQDY0064}}
 
| The name of a processing instruction equals "XML" (case insensitive).
 
| The name of a processing instruction equals "XML" (case insensitive).
 
|<code>processing-instruction xml { "etc" }</code>
 
|<code>processing-instruction xml { "etc" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0072</code>
+
|{{Code|XQDY0072}}
 
| The content of a computed comment contains "--" or ends with "-".
 
| The content of a computed comment contains "--" or ends with "-".
 
|<code>comment { "one -- two" }</code>
 
|<code>comment { "one -- two" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0074</code>
+
|{{Code|XQDY0074}}
 
| The name of a computed attribute or element is invalid, or uses an unbound prefix.
 
| The name of a computed attribute or element is invalid, or uses an unbound prefix.
 
|<code>element { "x y" } { "" }</code>
 
|<code>element { "x y" } { "" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0095</code>
+
|{{Code|XQDY0095}}
| A sequence with more than one item was bound to a <code>group by</code> clause.
+
| A sequence with more than one item was bound to a {{Code|group by}} clause.
|<code>let $a := (1,2) group by $a return $a</code>
+
|{{Code|let $a := (1,2) group by $a return $a}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XQDY0096</code>
+
|{{Code|XQDY0096}}
 
| The node name of an element uses reserved prefixes or namespaces.
 
| The node name of an element uses reserved prefixes or namespaces.
 
|<code>element { QName("uri", "xml:n") } {}</code>
 
|<code>element { QName("uri", "xml:n") } {}</code>
Line 345: Line 345:
 
==Functions Errors==
 
==Functions Errors==
  
Error Codes: <code>FOAR</code>, <code>FOCA</code>, <code>FOCH</code>, <code>FODC</code>, <code>FODF</code>, <code>FODT</code>, <code>FOER</code>, <code>FOFD</code>, <code>FONS</code>, <code>FORG</code>, <code>FORX</code>, <code>FOTY</code>, <code>FOUT</code>
+
Error Codes: {{Code|FOAR}}, {{Code|FOCA}}, {{Code|FOCH}}, {{Code|FODC}}, {{Code|FODF}}, {{Code|FODT}}, {{Code|FOER}}, {{Code|FOFD}}, {{Code|FONS}}, {{Code|FORG}}, {{Code|FORX}}, {{Code|FOTY}}, {{Code|FOUT}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 352: Line 352:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOAR0001</code>
+
|{{Code|FOAR0001}}
 
| A value was divided by zero.
 
| A value was divided by zero.
|<code>1 div 0</code>
+
|{{Code|1 div 0}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOAR0002</code>
+
|{{Code|FOAR0002}}
 
| A numeric declaration or operation causes an over- or underflow.
 
| A numeric declaration or operation causes an over- or underflow.
|<code>12345678901234567890<hr/>xs:double("-INF") idiv 1</code>
+
|{{Code|12345678901234567890<hr/>xs:double("-INF") idiv 1}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCA0002</code>
+
|{{Code|FOCA0002}}
 
| • A float number cannot be converted to a decimal or integer value, or<br />• a function argument cannot be converted to a valid QName.
 
| • A float number cannot be converted to a decimal or integer value, or<br />• a function argument cannot be converted to a valid QName.
|<code>xs:int(xs:double("INF"))<hr/>QName("", "el em")</code>
+
|{{Code|xs:int(xs:double("INF"))<hr/>QName("", "el em")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCA0003</code>
+
|{{Code|FOCA0003}}
 
| A value is too large to be represented as integer.
 
| A value is too large to be represented as integer.
|<code>xs:integer(99e100)</code>
+
|{{Code|xs:integer(99e100)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCA0005</code>
+
|{{Code|FOCA0005}}
| <code>"NaN"</code> is supplied to duration operations.
+
| {{Code|"NaN"}} is supplied to duration operations.
|<code>xs:yearMonthDuration("P1Y") * xs:double("NaN")</code>
+
|{{Code|xs:yearMonthDuration("P1Y") * xs:double("NaN")}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCH0001</code>
+
|{{Code|FOCH0001}}
 
| A codepoint was specified that does not represent a valid XML character.
 
| A codepoint was specified that does not represent a valid XML character.
|<code>codepoints-to-string(0)</code>
+
|{{Code|codepoints-to-string(0)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCH0002</code>
+
|{{Code|FOCH0002}}
 
| A unsupported collation was specified in a function.
 
| A unsupported collation was specified in a function.
|<code>compare('a', 'a', 'unknown')</code>
+
|{{Code|compare('a', 'a', 'unknown')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCH0003</code>
+
|{{Code|FOCH0003}}
 
| A unsupported normalization form was specified in a function.
 
| A unsupported normalization form was specified in a function.
|<code>normalize-unicode('a', 'unknown')</code>
+
|{{Code|normalize-unicode('a', 'unknown')}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0001</code>
+
|{{Code|FODC0001}}
| The argument specified in <code>fn:id()</code> or <code>fn:idref()</code> must have a document node as root.
+
| The argument specified in {{Code|fn:id()}} or {{Code|fn:idref()}} must have a document node as root.
|<code>id("id0", <xml/>)</code>
+
|{{Code|id("id0", <xml/>)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0002</code>
+
|{{Code|FODC0002}}
 
| The specified document resource cannot be retrieved.
 
| The specified document resource cannot be retrieved.
|<code>doc("unknown.xml")</code>
+
|{{Code|doc("unknown.xml")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0004</code>
+
|{{Code|FODC0004}}
 
| The specified collection cannot be retrieved.
 
| The specified collection cannot be retrieved.
|<code>collection("unknown")</code>
+
|{{Code|collection("unknown")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0005</code>
+
|{{Code|FODC0005}}
 
| The specified URI to a document resource is invalid.
 
| The specified URI to a document resource is invalid.
|<code>doc("<xml/>")</code>
+
|{{Code|doc("<xml/>")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0006</code>
+
|{{Code|FODC0006}}
| The string passed to <code>fn:parse-xml()</code> is not well-formed.
+
| The string passed to {{Code|fn:parse-xml()}} is not well-formed.
|<code>parse-xml("<x/")</code>
+
|{{Code|parse-xml("<x/")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODC0007</code>
+
|{{Code|FODC0007}}
| The base URI passed to <code>fn:parse-xml()</code> is invalid.
+
| The base URI passed to {{Code|fn:parse-xml()}} is invalid.
|<code>parse-xml("<x/>", ":")</code>
+
|{{Code|parse-xml("<x/>", ":")}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODF1280</code>
+
|{{Code|FODF1280}}
| The name of the decimal format passed to <code>fn:format-number()</code> is invalid.
+
| The name of the decimal format passed to {{Code|fn:format-number()}} is invalid.
|<code>format-number(1, "0", "invalid")</code>
+
|{{Code|format-number(1, "0", "invalid")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODF1310</code>
+
|{{Code|FODF1310}}
| The picture string passed to <code>fn:format-number()</code> is invalid.
+
| The picture string passed to {{Code|fn:format-number()}} is invalid.
|<code>format-number(1, "invalid")</code>
+
|{{Code|format-number(1, "invalid")}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODT0002</code>
+
|{{Code|FODT0002}}
 
| A duration declaration or operation causes an over- or underflow.
 
| A duration declaration or operation causes an over- or underflow.
|<code>implicit-timezone() div 0</code>
+
|{{Code|implicit-timezone() div 0}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FODT0003</code>
+
|{{Code|FODT0003}}
 
| An invalid timezone was specified.
 
| An invalid timezone was specified.
|<code>adjust-time-to-timezone(xs:time("01:01:01"), xs:dayTimeDuration("PT20H"))</code>
+
|{{Code|adjust-time-to-timezone(xs:time("01:01:01"), xs:dayTimeDuration("PT20H"))}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOER0000</code>
+
|{{Code|FOER0000}}
| Error triggered by the <code>fn:error()</code> function.
+
| Error triggered by the {{Code|fn:error()}} function.
|<code>error()</code>
+
|{{Code|error()}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFD1340</code>
+
|{{Code|FOFD1340}}
| The picture string passed to <code>fn:format-date()</code>, <code>fn:format-time()</code> or <code>fn:format-dateTime()</code> is invalid.
+
| The picture string passed to {{Code|fn:format-date()}}, {{Code|fn:format-time()}} or {{Code|fn:format-dateTime()}} is invalid.
|<code>format-date(current-date(), "[]")</code>
+
|{{Code|format-date(current-date(), "[]")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFD1350</code>
+
|{{Code|FOFD1350}}
| The picture string passed to <code>fn:format-date()</code>, <code>fn:format-time()</code> or <code>fn:format-dateTime()</code> specifies an non-available component.
+
| The picture string passed to {{Code|fn:format-date()}}, {{Code|fn:format-time()}} or {{Code|fn:format-dateTime()}} specifies an non-available component.
|<code>format-time(current-time(), "[Y2]")</code>
+
|{{Code|format-time(current-time(), "[Y2]")}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FONS0004</code>
+
|{{Code|FONS0004}}
 
| A function has a QName as argument that specifies an unbound prefix.
 
| A function has a QName as argument that specifies an unbound prefix.
|<code>resolve-QName("x:e", <e/>)</code>
+
|{{Code|resolve-QName("x:e", <e/>)}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0001</code>
+
|{{Code|FORG0001}}
 
| A value cannot be cast to the required target type.
 
| A value cannot be cast to the required target type.
|<code>xs:integer("A")<hr/>1 + <x>a</x></code>
+
|{{Code|xs:integer("A")<hr/>1 + <x>a</x>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0002</code>
+
|{{Code|FORG0002}}
| The URI passed to <code>fn:resolve-URI()</code> is invalid.
+
| The URI passed to {{Code|fn:resolve-URI()}} is invalid.
|<code>resolve-URI(":")</code>
+
|{{Code|resolve-URI(":")}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0003</code>
+
|{{Code|FORG0003}}
| <code>fn:zero-or-one()</code> was called with more than one item.
+
| {{Code|fn:zero-or-one()}} was called with more than one item.
|<code>zero-or-one((1, 2))</code>
+
|{{Code|zero-or-one((1, 2))}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0004</code>
+
|{{Code|FORG0004}}
| <code>fn:one-or-more()</code> was called with zero items.
+
| {{Code|fn:one-or-more()}} was called with zero items.
|<code>one-or-more(())</code>
+
|{{Code|one-or-more(())}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0005</code>
+
|{{Code|FORG0005}}
| <code>fn:exactly-one()</code> was called with zero or more than one item.
+
| {{Code|fn:exactly-one()}} was called with zero or more than one item.
|<code>exactly-one((1, 2))</code>
+
|{{Code|exactly-one((1, 2))}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0006</code>
+
|{{Code|FORG0006}}
 
| A wrong argument type was specified in a function call.
 
| A wrong argument type was specified in a function call.
|<code>sum((1, "string"))</code>
+
|{{Code|sum((1, "string"))}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORG0008</code>
+
|{{Code|FORG0008}}
| The arguments passed to <code>fn:dateTime()</code> have different timezones.
+
| The arguments passed to {{Code|fn:dateTime()}} have different timezones.
|<code>dateTime(xs:date("2001-01-01+01:01"), current-time())</code>
+
|{{Code|dateTime(xs:date("2001-01-01+01:01"), current-time())}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORX0001</code>
+
|{{Code|FORX0001}}
 
| A function specifies an invalid regular expression flag.
 
| A function specifies an invalid regular expression flag.
|<code>matches('input', 'query', 'invalid')</code>
+
|{{Code|matches('input', 'query', 'invalid')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORX0002</code>
+
|{{Code|FORX0002}}
 
| A function specifies an invalid regular expression.
 
| A function specifies an invalid regular expression.
|<code>matches('input', '[')</code>
+
|{{Code|matches('input', '[')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORX0003</code>
+
|{{Code|FORX0003}}
 
| A regular expression matches an empty string.
 
| A regular expression matches an empty string.
|<code>tokenize('input', '.?')</code>
+
|{{Code|tokenize('input', '.?')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FORX0004</code>
+
|{{Code|FORX0004}}
 
| The replacement string of a regular expression is invalid.
 
| The replacement string of a regular expression is invalid.
|<code>replace("input", "match", "\")</code>
+
|{{Code|replace("input", "match", "\")}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOTY0012</code>
+
|{{Code|FOTY0012}}
 
| An item has no typed value.
 
| An item has no typed value.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOTY0013</code>
+
|{{Code|FOTY0013}}
 
| Functions items cannot be atomized, have no defined equality, and have no string representation.
 
| Functions items cannot be atomized, have no defined equality, and have no string representation.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOTY0014</code>
+
|{{Code|FOTY0014}}
 
| Function items have no string representation.
 
| Function items have no string representation.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOTY0015</code>
+
|{{Code|FOTY0015}}
 
| Function items cannot be compared.
 
| Function items cannot be compared.
|<code></code>
+
|{{Code|}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOUT1170</code>
+
|{{Code|FOUT1170}}
 
| Function argument cannot be used to retrieve a text resource.
 
| Function argument cannot be used to retrieve a text resource.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOUT1170</code>
+
|{{Code|FOUT1170}}
 
| Encoding to retrieve a text resource is invalid or not supported.
 
| Encoding to retrieve a text resource is invalid or not supported.
|<code>unparsed-text('file.txt', 'InvalidEncoding')</code>
+
|{{Code|unparsed-text('file.txt', 'InvalidEncoding')}}
 
|}
 
|}
  
Line 537: Line 537:
 
==Serialization Errors==
 
==Serialization Errors==
  
Error Codes: <code>SEPM</code>, <code>SERE</code>, <code>SESU</code>
+
Error Codes: {{Code|SEPM}}, {{Code|SERE}}, {{Code|SESU}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 544: Line 544:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SESU0007</code>
+
|{{Code|SESU0007}}
 
| The specified encoding is not supported.
 
| The specified encoding is not supported.
|<code>declare option output:encoding "xyz"; 1</code>
+
|{{Code|declare option output:encoding "xyz"; 1}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SEPM0009</code>
+
|{{Code|SEPM0009}}
| <code>omit-xml-declaration</code> is set to <code>yes</code>, and <code>standalone</code> has a value other than <code>omit</code>.
+
| {{Code|omit-xml-declaration}} is set to {{Code|yes}}, and {{Code|standalone}} has a value other than {{Code|omit}}.
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SEPM0010</code>
+
|{{Code|SEPM0010}}
| <code>method</code> is set to <code>xml</code>, <code>undeclare-prefixes</code> is set to <code>yes</code>, and <code>version</code> is set to <code>1.0</code>.
+
| {{Code|method}} is set to {{Code|xml}}, {{Code|undeclare-prefixes}} is set to {{Code|yes}}, and {{Code|version}} is set to {{Code|1.0}}.
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SERE0014</code>
+
|{{Code|SERE0014}}
| <code>method</code> is set to <code>html</code>, and an invalid HTML character is found.
+
| {{Code|method}} is set to {{Code|html}}, and an invalid HTML character is found.
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SERE0015</code>
+
|{{Code|SERE0015}}
| <code>method</code> is set to <code>html</code>, and a closing bracket (&gt;) appears inside a processing instruction.
+
| {{Code|method}} is set to {{Code|html}}, and a closing bracket (&gt;) appears inside a processing instruction.
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SEPM0016</code>
+
|{{Code|SEPM0016}}
 
| A specified parameter is unknown or has an invalid value.
 
| A specified parameter is unknown or has an invalid value.
| <code>declare option output:indent "nope"; 1</code>
+
| {{Code|declare option output:indent "nope"; 1}}
 
|
 
|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>SEPM0017</code>
+
|{{Code|SEPM0017}}
 
| The definition of serialization parameter is invalid.
 
| The definition of serialization parameter is invalid.
 
|
 
|
Line 576: Line 576:
 
==Update Errors==
 
==Update Errors==
  
Error Codes: <code>FOUP</code>, <code>XUDY</code>, <code>XUST</code>, <code>XUTY</code>
+
Error Codes: {{Code|FOUP}}, {{Code|XUDY}}, {{Code|XUST}}, {{Code|XUTY}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 583: Line 583:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOUP0001</code>
+
|{{Code|FOUP0001}}
| The first argument of <code>fn:put()</code> must be a document node or element.
+
| The first argument of {{Code|fn:put()}} must be a document node or element.
 
|<code>fn:put(text { 1 }, 'file.txt')</code>
 
|<code>fn:put(text { 1 }, 'file.txt')</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOUP0002</code>
+
|{{Code|FOUP0002}}
| The second argument of <code>fn:put()</code> is not a valid URI.
+
| The second argument of {{Code|fn:put()}} is not a valid URI.
|<code>fn:put(<a/>, '//')</code>
+
|{{Code|fn:put(<a/>, '//')}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0009</code>
+
|{{Code|XUDY0009}}
 
| The target node of a replace expression needs a parent in order to be replaced.
 
| The target node of a replace expression needs a parent in order to be replaced.
|<code>replace node <target/> with <new/></code>
+
|{{Code|replace node <target/> with <new/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0014</code>
+
|{{Code|XUDY0014}}
| The expression updated by the <code>modify</code> clause was not created by the <code>copy</code> clause.
+
| The expression updated by the {{Code|modify}} clause was not created by the {{Code|copy}} clause.
|<code>let $a := doc('a') return copy $b := $a modify delete node $a/* return $b</code>
+
|{{Code|let $a := doc('a') return copy $b := $a modify delete node $a/* return $b}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0015</code>
+
|{{Code|XUDY0015}}
| In a <code>rename</code> expression, a target is renamed more than once.
+
| In a {{Code|rename}} expression, a target is renamed more than once.
|<code>let $a := <xml/> return (rename node $a as 'a', rename node $a as 'b')</code>
+
|{{Code|let $a := <xml/> return (rename node $a as 'a', rename node $a as 'b')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0016</code>
+
|{{Code|XUDY0016}}
| In a <code>replace</code> expression, a target is replaced more than once.
+
| In a {{Code|replace}} expression, a target is replaced more than once.
|<code>let $a := <x>x</x>/node() return (replace node $a with <a/>, replace node $a with <b/>)</code>
+
|{{Code|let $a := <x>x</x>/node() return (replace node $a with <a/>, replace node $a with <b/>)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0017</code>
+
|{{Code|XUDY0017}}
| In a <code>replace value of</code> expression, a target is replaced more than once.
+
| In a {{Code|replace value of}} expression, a target is replaced more than once.
|<code>let $a := <x/> return (replace value of node $a with 'a', replace value of node $a with 'a')</code>
+
|{{Code|let $a := <x/> return (replace value of node $a with 'a', replace value of node $a with 'a')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0021</code>
+
|{{Code|XUDY0021}}
 
| The resulting update expression contains duplicate attributes.
 
| The resulting update expression contains duplicate attributes.
 
|<code>copy $c := <x a='a'/> modify insert node attribute a {""} into $c return $c</code>
 
|<code>copy $c := <x a='a'/> modify insert node attribute a {""} into $c return $c</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0023</code>
+
|{{Code|XUDY0023}}
 
| The resulting update expression conflicts with existing namespaces.
 
| The resulting update expression conflicts with existing namespaces.
|<code>rename node <a:ns xmlns:a='uri'/> as QName('URI', 'a:ns')</code>
+
|{{Code|rename node <a:ns xmlns:a='uri'/> as QName('URI', 'a:ns')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0024</code>
+
|{{Code|XUDY0024}}
 
| New namespaces conflict with each other.
 
| New namespaces conflict with each other.
 
|<code>copy $n := <x/> modify (insert node attribute { QName('uri1', 'a') } { "" } into $n, insert node attribute { QName('uri2', 'a') } { "" } into $n) return $n</code>
 
|<code>copy $n := <x/> modify (insert node attribute { QName('uri1', 'a') } { "" } into $n, insert node attribute { QName('uri2', 'a') } { "" } into $n) return $n</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0027</code>
+
|{{Code|XUDY0027}}
 
| Target of an update expression is an empty sequence.
 
| Target of an update expression is an empty sequence.
|<code>insert node <x/> into ()</code>
+
|{{Code|insert node <x/> into ()}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0029</code>
+
|{{Code|XUDY0029}}
 
| The target of an update expression has no parent node.
 
| The target of an update expression has no parent node.
|<code>insert node <new/> before <target/></code>
+
|{{Code|insert node <new/> before <target/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0030</code>
+
|{{Code|XUDY0030}}
 
| Attributes cannot be inserted before or after the child of a document node.
 
| Attributes cannot be inserted before or after the child of a document node.
 
|<code>insert node <e a='a'/>/@a after document { <e/> }/*</code>
 
|<code>insert node <e a='a'/>/@a after document { <e/> }/*</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUDY0031</code>
+
|{{Code|XUDY0031}}
| Multiple calls to <code>fn:put()</code> address the same URI.
+
| Multiple calls to {{Code|fn:put()}} address the same URI.
|<code>for $i in 1 to 3 return put(<a/>, 'file.txt')</code>
+
|{{Code|for $i in 1 to 3 return put(<a/>, 'file.txt')}}
 
|-
 
|-
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUST0001</code>
+
|{{Code|XUST0001}}
 
| No updating expression is allowed here.
 
| No updating expression is allowed here.
|<code>delete node /, "finished."</code>
+
|{{Code|delete node /, "finished."}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUST0002</code>
+
|{{Code|XUST0002}}
| An updating expression is expected in the <code>modify</code> clause or an updating function.
+
| An updating expression is expected in the {{Code|modify}} clause or an updating function.
|<code>copy $a := <x/> modify 1 return $a</code>
+
|{{Code|copy $a := <x/> modify 1 return $a}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUST0003</code>
+
|{{Code|XUST0003}}
 
| The revalidation mode was declared more than once.
 
| The revalidation mode was declared more than once.
|<code>declare revalidation ...</code>
+
|{{Code|declare revalidation ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUST0026</code>
+
|{{Code|XUST0026}}
 
| The query contains a revalidate expression (revalidation is not supported by BaseX).
 
| The query contains a revalidate expression (revalidation is not supported by BaseX).
|<code>declare revalidation ...</code>
+
|{{Code|declare revalidation ...}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUST0028</code>
+
|{{Code|XUST0028}}
 
| no return type may be specified in an updating function.
 
| no return type may be specified in an updating function.
 
|<code>declare updating function local:x() as item() { () }; ()</code>
 
|<code>declare updating function local:x() as item() { () }; ()</code>
Line 665: Line 665:
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0004</code>
+
|{{Code|XUTY0004}}
 
| New attributes to be inserted must directly follow the root node.
 
| New attributes to be inserted must directly follow the root node.
 
|<code>insert node (<a/>, attribute a {""}) into <a/></code>
 
|<code>insert node (<a/>, attribute a {""}) into <a/></code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0005</code>
+
|{{Code|XUTY0005}}
| A single element or document node is expected as target of an <code>insert</code> expression.
+
| A single element or document node is expected as target of an {{Code|insert}} expression.
 
|<code>insert node <new/> into attribute a { "" }</code>
 
|<code>insert node <new/> into attribute a { "" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0006</code>
+
|{{Code|XUTY0006}}
| A single element, text, comment or processing instruction is expected as target of an <code>insert before/after</code> expression.
+
| A single element, text, comment or processing instruction is expected as target of an {{Code|insert before/after}} expression.
 
|<code>insert node <new/> after attribute a { "" }</code>
 
|<code>insert node <new/> after attribute a { "" }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0007</code>
+
|{{Code|XUTY0007}}
 
| Only nodes can be deleted.
 
| Only nodes can be deleted.
|<code>delete node "string"</code>
+
|{{Code|delete node "string"}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0008</code>
+
|{{Code|XUTY0008}}
| A single element, text, attribute, comment or processing instruction is expected as target of a <code>replace</code> expression.
+
| A single element, text, attribute, comment or processing instruction is expected as target of a {{Code|replace}} expression.
 
|<code>replace node document { <a/> } with <b/></code>
 
|<code>replace node document { <a/> } with <b/></code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0010</code>
+
|{{Code|XUTY0010}}
| In a <code>replace</code> expression, in which no attributes are targeted, the replacing nodes must not be attributes as well.
+
| In a {{Code|replace}} expression, in which no attributes are targeted, the replacing nodes must not be attributes as well.
 
|<code>replace node <a><b/></a>/b with attribute size { 1 }</code>
 
|<code>replace node <a><b/></a>/b with attribute size { 1 }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0011</code>
+
|{{Code|XUTY0011}}
| In the <code>replace</code> expression, in which attributes are targeted, the replacing nodes must be attributes as well.
+
| In the {{Code|replace}} expression, in which attributes are targeted, the replacing nodes must be attributes as well.
|<code>replace node <e a=""/>/@a with <a/></code>
+
|{{Code|replace node <e a=""/>/@a with <a/>}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0012</code>
+
|{{Code|XUTY0012}}
| In a <code>rename</code> expression, the target nodes must be an element, attribute or processing instruction.
+
| In a {{Code|rename}} expression, the target nodes must be an element, attribute or processing instruction.
 
|<code>rename node text { 1 } as <x/></code>
 
|<code>rename node text { 1 } as <x/></code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0013</code>
+
|{{Code|XUTY0013}}
| An expression in the <code>copy</code> clause must return a single node.
+
| An expression in the {{Code|copy}} clause must return a single node.
|<code>copy $c := (<a/>, <b/>) modify () return $c</code>
+
|{{Code|copy $c := (<a/>, <b/>) modify () return $c}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>XUTY0022</code>
+
|{{Code|XUTY0022}}
 
| An attribute must not be inserted into a document node.
 
| An attribute must not be inserted into a document node.
 
|<code>insert node <e a=""/>/@a into document {'a'}</code>
 
|<code>insert node <e a=""/>/@a into document {'a'}</code>
Line 708: Line 708:
 
==Full-Text Errors==
 
==Full-Text Errors==
  
Error Codes: <code>FTDY</code>, <code>FTST</code>
+
Error Codes: {{Code|FTDY}}, {{Code|FTST}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 715: Line 715:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTDY0016</code>
+
|{{Code|FTDY0016}}
 
| The specified weight value is out of range.
 
| The specified weight value is out of range.
 
|<code>'a' contains text 'a' weight { 1001 }</code>
 
|<code>'a' contains text 'a' weight { 1001 }</code>
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTDY0017</code>
+
|{{Code|FTDY0017}}
| The <code>not in</code> operator contains a ''string exclude''.
+
| The {{Code|not in}} operator contains a ''string exclude''.
|<code>'a' contains text 'a' not in (ftnot 'a')</code>
+
|{{Code|'a' contains text 'a' not in (ftnot 'a')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTDY0020</code>
+
|{{Code|FTDY0020}}
 
| The search term uses an invalid wildcard syntax.
 
| The search term uses an invalid wildcard syntax.
 
|<code>'a' contains text '.{}' using wildcards</code>
 
|<code>'a' contains text '.{}' using wildcards</code>
Line 729: Line 729:
 
| colspan=3 style="background-color:white;"|
 
| colspan=3 style="background-color:white;"|
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTST0007</code>
+
|{{Code|FTST0007}}
| The full-text expression contains an ignore option (the <code>ignore option</code> is not supported by BaseX).
+
| The full-text expression contains an ignore option (the {{Code|ignore option}} is not supported by BaseX).
|<code>'a' contains text 'a' without content 'x'</code>
+
|{{Code|'a' contains text 'a' without content 'x'}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTST0008</code>
+
|{{Code|FTST0008}}
 
| The specified stop word file could not be opened or processed.
 
| The specified stop word file could not be opened or processed.
|<code>'a' contains text 'a' using stop words at 'unknown.txt'</code>
+
|{{Code|'a' contains text 'a' using stop words at 'unknown.txt'}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTST0009</code>
+
|{{Code|FTST0009}}
 
| The specified language is not supported.
 
| The specified language is not supported.
|<code>'a' contains text 'a' using language 'aaa'</code>
+
|{{Code|'a' contains text 'a' using language 'aaa'}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTST0018</code>
+
|{{Code|FTST0018}}
 
| The specified thesaurus file could not be opened or processed.
 
| The specified thesaurus file could not be opened or processed.
|<code>'a' contains text 'a' using thesaurus at 'aaa'</code>
+
|{{Code|'a' contains text 'a' using thesaurus at 'aaa'}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FTST0019</code>
+
|{{Code|FTST0019}}
 
| A match option was specified more than once.
 
| A match option was specified more than once.
|<code>'a' contains text 'a' using stemming using stemming</code>
+
|{{Code|'a' contains text 'a' using stemming using stemming}}
 
|}
 
|}
  
 
==[[ZIP Module]] Errors==
 
==[[ZIP Module]] Errors==
  
Error Codes: <code>FOZP</code>
+
Error Codes: {{Code|FOZP}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 759: Line 759:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOZP0001</code>
+
|{{Code|FOZP0001}}
 
| The specified path does not exist.
 
| The specified path does not exist.
|<code>zip:entries('unknown.zip')</code>
+
|{{Code|zip:entries('unknown.zip')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOZP0002</code>
+
|{{Code|FOZP0002}}
 
| Entries in the description of a ZIP archive are unknown, missing, or invalid.
 
| Entries in the description of a ZIP archive are unknown, missing, or invalid.
|<code>zip:zip-file(<file xmlns="unknown" href='target.zip'/>)</code>
+
|{{Code|zip:zip-file(<file xmlns="unknown" href='target.zip'/>)}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOZP0003</code>
+
|{{Code|FOZP0003}}
 
| ZIP file extraction or creation fails for some other reason (e.g.: new ZIP file contains no entries, or duplicates).
 
| ZIP file extraction or creation fails for some other reason (e.g.: new ZIP file contains no entries, or duplicates).
 
|
 
|
Line 774: Line 774:
 
==[[Cryptographic Module]] Errors==
 
==[[Cryptographic Module]] Errors==
  
Error Codes: <code>FOCX</code>
+
Error Codes: {{Code|FOCX}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 781: Line 781:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0001</code>
+
|{{Code|FOCX0001}}
 
| Canonicalization algorithm is not supported.
 
| Canonicalization algorithm is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0002</code>
+
|{{Code|FOCX0002}}
 
| Digest algorithm is not supported.
 
| Digest algorithm is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0003</code>
+
|{{Code|FOCX0003}}
 
| Signature algorithm is not supported.
 
| Signature algorithm is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0004</code>
+
|{{Code|FOCX0004}}
 
| XPath expression is invalid.
 
| XPath expression is invalid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0005</code>
+
|{{Code|FOCX0005}}
 
| Invalid name for $digital-certificate root.
 
| Invalid name for $digital-certificate root.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0006</code>
+
|{{Code|FOCX0006}}
 
| Invalid child element of $digital-certificate.
 
| Invalid child element of $digital-certificate.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0007</code>
+
|{{Code|FOCX0007}}
 
| Key store is null.
 
| Key store is null.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0008</code>
+
|{{Code|FOCX0008}}
 
| I/O error while reading keystore.
 
| I/O error while reading keystore.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0009</code>
+
|{{Code|FOCX0009}}
 
| Permission denied to read keystore.
 
| Permission denied to read keystore.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0010</code>
+
|{{Code|FOCX0010}}
 
| Keystore URL is invalid.
 
| Keystore URL is invalid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0011</code>
+
|{{Code|FOCX0011}}
 
| Keystore type is not supported.
 
| Keystore type is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0012</code>
+
|{{Code|FOCX0012}}
 
| Cannot find key for alias in given keystore.
 
| Cannot find key for alias in given keystore.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0013</code>
+
|{{Code|FOCX0013}}
 
| Hashing algorithm is not supported.
 
| Hashing algorithm is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0014</code>
+
|{{Code|FOCX0014}}
 
| Encoding method is not supported.
 
| Encoding method is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0015</code>
+
|{{Code|FOCX0015}}
 
| Cannot find signature element.
 
| Cannot find signature element.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0016</code>
+
|{{Code|FOCX0016}}
 
| No such padding.
 
| No such padding.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0017</code>
+
|{{Code|FOCX0017}}
 
| Incorrect padding.
 
| Incorrect padding.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0018</code>
+
|{{Code|FOCX0018}}
 
| Encryption type is not supported.
 
| Encryption type is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0019</code>
+
|{{Code|FOCX0019}}
 
| Secret key is invalid.
 
| Secret key is invalid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0020</code>
+
|{{Code|FOCX0020}}
 
| Illegal block size.
 
| Illegal block size.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0021</code>
+
|{{Code|FOCX0021}}
 
| Algorithm is not supported.
 
| Algorithm is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX0022</code>
+
|{{Code|FOCX0022}}
 
| Decryption type is not supported.
 
| Decryption type is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9999</code>
+
|{{Code|FOCX9999}}
 
| Signature type is not supported.
 
| Signature type is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9998</code>
+
|{{Code|FOCX9998}}
 
| Not (yet) supported.
 
| Not (yet) supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9997</code>
+
|{{Code|FOCX9997}}
 
| Algorithm not compatible with encryption type.
 
| Algorithm not compatible with encryption type.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9996</code>
+
|{{Code|FOCX9996}}
 
| IO Exception.
 
| IO Exception.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9995</code>
+
|{{Code|FOCX9995}}
 
| Keystore exception.
 
| Keystore exception.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9994</code>
+
|{{Code|FOCX9994}}
 
| Signature exception.
 
| Signature exception.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9993</code>
+
|{{Code|FOCX9993}}
 
| Invalid algorithm.
 
| Invalid algorithm.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOCX9992</code>
+
|{{Code|FOCX9992}}
 
| Invalid certificate alias.
 
| Invalid certificate alias.
|<code></code>
+
|{{Code|}}
 
|}
 
|}
  
 
==[[File Module]] Errors==
 
==[[File Module]] Errors==
  
Error Codes: <code>FOFL</code>
+
Error Codes: {{Code|FOFL}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 911: Line 911:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL0001</code>
+
|{{Code|FOFL0001}}
 
| The specified path does not exist.
 
| The specified path does not exist.
|<code>file:size('unknown.txt')</code>
+
|{{Code|file:size('unknown.txt')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL0002</code>
+
|{{Code|FOFL0002}}
 
| The specified path does already exist.
 
| The specified path does already exist.
|<code>file:create-directory('existing-directory')</code>
+
|{{Code|file:create-directory('existing-directory')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL0003</code>
+
|{{Code|FOFL0003}}
 
| The specified path does not point to a directory.
 
| The specified path does not point to a directory.
|<code>file:list('file.txt')</code>
+
|{{Code|file:list('file.txt')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL0004</code>
+
|{{Code|FOFL0004}}
 
| The specified path points to a directory.
 
| The specified path points to a directory.
|<code>file:read('directory')</code>
+
|{{Code|file:read('directory')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL0005</code>
+
|{{Code|FOFL0005}}
 
| The specified encoding is not supported.
 
| The specified encoding is not supported.
|<code>file:read('file.txt', 'UTF99')</code>
+
|{{Code|file:read('file.txt', 'UTF99')}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOFL9999</code>
+
|{{Code|FOFL9999}}
 
| A file operation fails for any other reason.
 
| A file operation fails for any other reason.
|<code></code>
+
|{{Code|}}
 
|}
 
|}
  
 
==[[HTTP Module]] Errors==
 
==[[HTTP Module]] Errors==
  
Error Codes: <code>FOHC</code>
+
Error Codes: {{Code|FOHC}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 945: Line 945:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0001</code>
+
|{{Code|FOHC0001}}
 
| The specified URL is invalid.
 
| The specified URL is invalid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0002</code>
+
|{{Code|FOHC0002}}
 
| The requested method is not valid for HTTP.
 
| The requested method is not valid for HTTP.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0004</code>
+
|{{Code|FOHC0004}}
 
| The request element is not valid.
 
| The request element is not valid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0005</code>
+
|{{Code|FOHC0005}}
 
| An HTTP error occurred.
 
| An HTTP error occurred.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0006</code>
+
|{{Code|FOHC0006}}
 
| The provided credentials are invalid.
 
| The provided credentials are invalid.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOHC0007</code>
+
|{{Code|FOHC0007}}
 
| The HTML input could not be parsed.
 
| The HTML input could not be parsed.
|<code></code>
+
|{{Code|}}
 
|}
 
|}
  
 
==[[Repository#EXPath Packaging|Packaging]] Errors==
 
==[[Repository#EXPath Packaging|Packaging]] Errors==
  
Error Codes: <code>PACK</code>
+
Error Codes: {{Code|PACK}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 979: Line 979:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0001</code>
+
|{{Code|PACK0001}}
 
| The specified package does not exist.
 
| The specified package does not exist.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0002</code>
+
|{{Code|PACK0002}}
 
| The package uses an invalid namespace URI.
 
| The package uses an invalid namespace URI.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0003</code>
+
|{{Code|PACK0003}}
 
| A required package is not installed.
 
| A required package is not installed.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0004</code>
+
|{{Code|PACK0004}}
 
| Invalid package descriptor found.
 
| Invalid package descriptor found.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0005</code>
+
|{{Code|PACK0005}}
 
| A module is already installed within another package.
 
| A module is already installed within another package.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0006</code>
+
|{{Code|PACK0006}}
 
| The current package could not be parsed.
 
| The current package could not be parsed.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0007</code>
+
|{{Code|PACK0007}}
 
| A package cannot be deleted.
 
| A package cannot be deleted.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0008</code>
+
|{{Code|PACK0008}}
 
| A package depends on another package.
 
| A package depends on another package.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0009</code>
+
|{{Code|PACK0009}}
 
| The addressed package version is not supported.
 
| The addressed package version is not supported.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0010</code>
+
|{{Code|PACK0010}}
 
| Invalid JAR descriptor found.
 
| Invalid JAR descriptor found.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>PACK0011</code>
+
|{{Code|PACK0011}}
 
| The JAR descriptor could not be read.
 
| The JAR descriptor could not be read.
|<code></code>
+
|{{Code|}}
 
|}
 
|}
  
 
==[[SQL Module]] Errors==
 
==[[SQL Module]] Errors==
  
Error Codes: <code>FOSQ</code>
+
Error Codes: {{Code|FOSQ}}
  
 
{| class="wikitable" width="100%"
 
{| class="wikitable" width="100%"
Line 1,033: Line 1,033:
 
! width="45%"|Examples
 
! width="45%"|Examples
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0001</code>
+
|{{Code|FOSQ0001}}
 
| An SQL exception occurred.
 
| An SQL exception occurred.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0002</code>
+
|{{Code|FOSQ0002}}
 
| No opened connection with the specified id found.
 
| No opened connection with the specified id found.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0003</code>
+
|{{Code|FOSQ0003}}
 
| Number of parameters differs from number of placeholders.
 
| Number of parameters differs from number of placeholders.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0004</code>
+
|{{Code|FOSQ0004}}
 
| No parameter type specified.
 
| No parameter type specified.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0005</code>
+
|{{Code|FOSQ0005}}
 
| An unexpected attribute was found.
 
| An unexpected attribute was found.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0006</code>
+
|{{Code|FOSQ0006}}
 
| The specified format is illegal.
 
| The specified format is illegal.
|<code></code>
+
|{{Code|}}
 
|- valign="top" scope="row"
 
|- valign="top" scope="row"
|<code>FOSQ0007</code>
+
|{{Code|FOSQ0007}}
 
| The JDBC driver cannot be initialized.
 
| The JDBC driver cannot be initialized.
|<code></code>
+
|{{Code|}}
 
|}
 
|}
  
 
[[Category:XQuery]]
 
[[Category:XQuery]]

Revision as of 22:40, 26 May 2012

This article is part of the XQuery Portal. It summarizes all error codes that may be thrown by the BaseX XQuery processor.

As the original specifications are rather bulky and meticulous, we tried our best to make this overview comprehensible to a wider range of readers. The following tables list the error codes that are known to BaseX, a short description, and examples of queries raising that errors.

Original definitions of the error codes are found in the XQuery 3.0, XQuery 3.0 Functions, XQuery 1.0 Update, XQuery 1.0 Full Text, and EXPath HTTP Specifications.

BaseX Errors

Error Codes: BASX

Code Description Examples
BASX0000 Generic error, which is used for exceptions in context-aware Java bindings.
BASX0001 The current user has insufficient permissions to execute an expression. file:delete('file.txt'): Create rights needed.
BASX0002 The specified database option is unknown. declare option db:xyz "no"; 1

Static Errors

Error Codes: XPST, XQST

Code Description Examples
XPST0003 An error occurred while parsing the query string (i.e., before the query could be compiled and executed). This error is the most common one, and may be accompanied by a variety of different error messages. 1+
for i in //* return $i
XPST0005 An expression will never results, no matter what input will be processed. doc('input')/..
XPST0008 A variable or type name is used that has not been defined in the current scope. $a---
element(*, x)
XPST0017 • The specified function is unknown, or
• it uses the wrong number of arguments.
unknown()
count(1,2,3)
XPST0051 An unknown QName is used in a sequence type (e.g. in the target type of the cast expression). 1 instance of x
"test" cast as xs:itr
XPST0080 xs:NOTATION or xs:anyAtomicType is used as target type of cast or castable. 1 castable as xs:NOTATION
XPST0081 • A QName uses a prefix that has not been bound to any namespace, or
• a pragma or option declaration has not been prefixed.
unknown:x
(# pragma #) { 1 }
XQST0009 The query imports a schema (schema import is not supported by BaseX). import schema "x"; ()
XQST0022 Namespace values must be constant strings. <elem xmlns="{ 'dynamic' }"/>
XQST0031 The specified XQuery version is not specified. xquery version "9.9"; ()
XQST0032 The base URI was declared more than once. declare base-uri ...
XQST0033 A namespace prefix was declared more than once. {{{1}}}
XQST0034 A function was declared more than once. declare function local:a() { 1 };
declare function local:a() { 2 }; local:a()
XQST0038 The default collation was declared more than once. declare default collation ...
XQST0039 Two or more parameters in a user-defined function have the same name. declare function local:fun($a, $a) { $a * $a };
local:fun(1,2)
XQDY0040 Two or more attributes in an element have the same node name. {{{1}}}
XQDY0045 A user-defined function uses a reserved namespace. declare function fn:fun() { 1 }; ()
XQST0047 A module was defined more than once. import module ...
XQST0048 A module declaration does not match the namespace of the specified module. {{{1}}}
XQST0049 A global variable was declared more than once. {{{1}}}
XQST0054 A global variable depends on itself. This may be triggered by a circular variable definition. declare variable $a := local:a();
declare function local:a() { $a }; $a
XQST0055 The mode for copying namespaces was declared more than once. declare copy-namespaces ...
XQST0057 The namespace of a schema import may not be empty. import schema ""; ()
XQST0059 The schema or module with the specified namespace cannot be found or processed. import module "unknown"; ()
XQST0060 A user-defined function has no namespace. declare default function namespace "";
declare function x() { 1 }; 1
XQST0065 The ordering mode was declared more than once. declare ordering ...
XQST0065 The default namespace mode for elements or functions was declared more than once. declare default element namespace ...
XQST0067 The construction mode was declared more than once. declare construction ...
XQST0068 The mode for handling boundary spaces was declared more than once. declare boundary-space ...
XQST0069 The default order for empty sequences was declared more than once. declare default order empty ...
XQST0070 A namespace declaration overwrites a reserved namespace. {{{1}}}
XQST0071 A namespace is declared more than once in an element constructor. {{{1}}}
XQST0075 The query contains a validate expression (validation is not supported by BaseX). validate strict { () }
XQST0076 A group by or order by clause specifies an unknown collation. for $i in 1 to 10
order by $i collation "unknown"
return $i
XQST0079 A pragma was specified without the expression that is to be evaluated. (# xml:a #) {}
XQST0085 An empty namespace URI was specified. {{{1}}}
XQST0087 An unknown encoding was specified. Note that the encoding declaration is currently ignored in BaseX. xquery version "1.0" encoding "a b"; ()
XQST0088 An empty module namespace was specified. import module ""; ()
XQST0089 Two variables in a for or let clause have the same name. for $a at $a in 1 return $i
XQST0090 A character reference specifies an invalid character. "&#0;"
XQST0093 A module depends on itself. This may be triggered by a circular module definition. import module ...
XQST0094 group by references a variable that has not been declared before. for $a in 1 group by $b return $a
XQST0097 A decimal-format property is invalid. {{{1}}}
XQST0098 A single decimal-format character was assigned to multiple properties. {{{1}}}
XQST0099 The context item was declared more than once. declare context item ...
XQST0107 The initializer of the context item depends on itself. {{{1}}}
XQST0108 Output declarations may only be specified in the main module. Module: declare output ...
XQST0109 The specified serialization parameter is unknown. declare option output:unknown "..."; 1
XQST0110 A serialization parameter was specified more than once in the output declarations. declare option output:indent "no";
declare option output:indent "no"; 1
XQST0111 A decimal format was declared more than once. declare decimal-format ...
XQST0113 Context item values may only be in the main module. Module: {{{1}}}
XQST0114 A decimal-format property has been specified more than once. {{{1}}}

Type Errors

Error Codes: XPTY, XQTY

Code Description Examples
XPTY0004 This error is raised if an expression has the wrong type, or cannot be cast into the specified type. It may be raised both statically (during query compilation) or dynamically (at runtime). 1 + "A"
abs("a")
1 cast as xs:gYear
XPTY0018 The result of the last step in a path expression contains both nodes and atomic values. doc('input.xml')/(*, 1)
XPTY0019 The result of a step (other than the last step) in a path expression contains an atomic values. (1 to 10)/*
XQTY0024 An attribute node cannot be bound to its parent element, as other nodes of a different type were specified before. <elem>text { attribute a { "val" } }</elem>

Dynamic Errors

Error Codes: XPDY, XQDY

Code Description Examples
XPDY0002 • No value has been defined for an external variable, or
• no context item has been set before the query was executed.
declare variable $x external; $x
descendant::*
XPDY0050 • The operand type of a treat expression does not match the type of the argument, or
• the root of the context item must be a document node.
"string" treat as xs:int
"string"[/]
XQDY0025 Two or more attributes in a constructed element have the same node name. element x { attribute a { "" } attribute a { "" } }
XQDY0026 The content of a computed processing instruction contains "?>". processing-instruction pi { "?>" }
XQDY0041 The name of a processing instruction is invalid. processing-instruction { "1" } { "" }
XQDY0043 The node name of an attribute uses reserved prefixes or namespaces. attribute xmlns { "etc" }
XQDY0064 The name of a processing instruction equals "XML" (case insensitive). processing-instruction xml { "etc" }
XQDY0072 The content of a computed comment contains "--" or ends with "-". comment { "one -- two" }
XQDY0074 The name of a computed attribute or element is invalid, or uses an unbound prefix. element { "x y" } { "" }
XQDY0095 A sequence with more than one item was bound to a group by clause. {{{1}}}
XQDY0096 The node name of an element uses reserved prefixes or namespaces. element { QName("uri", "xml:n") } {}

Functions Errors

Error Codes: FOAR, FOCA, FOCH, FODC, FODF, FODT, FOER, FOFD, FONS, FORG, FORX, FOTY, FOUT

Code Description Examples
FOAR0001 A value was divided by zero. 1 div 0
FOAR0002 A numeric declaration or operation causes an over- or underflow. 12345678901234567890
xs:double("-INF") idiv 1
FOCA0002 • A float number cannot be converted to a decimal or integer value, or
• a function argument cannot be converted to a valid QName.
xs:int(xs:double("INF"))
QName("", "el em")
FOCA0003 A value is too large to be represented as integer. xs:integer(99e100)
FOCA0005 "NaN" is supplied to duration operations. xs:yearMonthDuration("P1Y") * xs:double("NaN")
FOCH0001 A codepoint was specified that does not represent a valid XML character. codepoints-to-string(0)
FOCH0002 A unsupported collation was specified in a function. compare('a', 'a', 'unknown')
FOCH0003 A unsupported normalization form was specified in a function. normalize-unicode('a', 'unknown')
FODC0001 The argument specified in fn:id() or fn:idref() must have a document node as root. id("id0", <xml/>)
FODC0002 The specified document resource cannot be retrieved. doc("unknown.xml")
FODC0004 The specified collection cannot be retrieved. collection("unknown")
FODC0005 The specified URI to a document resource is invalid. doc("<xml/>")
FODC0006 The string passed to fn:parse-xml() is not well-formed. parse-xml("<x/")
FODC0007 The base URI passed to fn:parse-xml() is invalid. parse-xml("<x/>", ":")
FODF1280 The name of the decimal format passed to fn:format-number() is invalid. format-number(1, "0", "invalid")
FODF1310 The picture string passed to fn:format-number() is invalid. format-number(1, "invalid")
FODT0002 A duration declaration or operation causes an over- or underflow. implicit-timezone() div 0
FODT0003 An invalid timezone was specified. adjust-time-to-timezone(xs:time("01:01:01"), xs:dayTimeDuration("PT20H"))
FOER0000 Error triggered by the fn:error() function. error()
FOFD1340 The picture string passed to fn:format-date(), fn:format-time() or fn:format-dateTime() is invalid. format-date(current-date(), "[]")
FOFD1350 The picture string passed to fn:format-date(), fn:format-time() or fn:format-dateTime() specifies an non-available component. format-time(current-time(), "[Y2]")
FONS0004 A function has a QName as argument that specifies an unbound prefix. resolve-QName("x:e", <e/>)
FORG0001 A value cannot be cast to the required target type. xs:integer("A")
1 + <x>a</x>
FORG0002 The URI passed to fn:resolve-URI() is invalid. resolve-URI(":")
FORG0003 fn:zero-or-one() was called with more than one item. zero-or-one((1, 2))
FORG0004 fn:one-or-more() was called with zero items. one-or-more(())
FORG0005 fn:exactly-one() was called with zero or more than one item. exactly-one((1, 2))
FORG0006 A wrong argument type was specified in a function call. sum((1, "string"))
FORG0008 The arguments passed to fn:dateTime() have different timezones. dateTime(xs:date("2001-01-01+01:01"), current-time())
FORX0001 A function specifies an invalid regular expression flag. matches('input', 'query', 'invalid')
FORX0002 A function specifies an invalid regular expression. matches('input', '[')
FORX0003 A regular expression matches an empty string. tokenize('input', '.?')
FORX0004 The replacement string of a regular expression is invalid. replace("input", "match", "\")
FOTY0012 An item has no typed value.
FOTY0013 Functions items cannot be atomized, have no defined equality, and have no string representation.
FOTY0014 Function items have no string representation.
FOTY0015 Function items cannot be compared.
FOUT1170 Function argument cannot be used to retrieve a text resource.
FOUT1170 Encoding to retrieve a text resource is invalid or not supported. unparsed-text('file.txt', 'InvalidEncoding')

....to be added: FOTY0012-0015

Serialization Errors

Error Codes: SEPM, SERE, SESU

Code Description Examples
SESU0007 The specified encoding is not supported. declare option output:encoding "xyz"; 1
SEPM0009 omit-xml-declaration is set to yes, and standalone has a value other than omit.
SEPM0010 method is set to xml, undeclare-prefixes is set to yes, and version is set to 1.0.
SERE0014 method is set to html, and an invalid HTML character is found.
SERE0015 method is set to html, and a closing bracket (>) appears inside a processing instruction.
SEPM0016 A specified parameter is unknown or has an invalid value. declare option output:indent "nope"; 1
SEPM0017 The definition of serialization parameter is invalid.

Update Errors

Error Codes: FOUP, XUDY, XUST, XUTY

Code Description Examples
FOUP0001 The first argument of fn:put() must be a document node or element. fn:put(text { 1 }, 'file.txt')
FOUP0002 The second argument of fn:put() is not a valid URI. fn:put(<a/>, '//')
XUDY0009 The target node of a replace expression needs a parent in order to be replaced. replace node <target/> with <new/>
XUDY0014 The expression updated by the modify clause was not created by the copy clause. {{{1}}}
XUDY0015 In a rename expression, a target is renamed more than once. {{{1}}}
XUDY0016 In a replace expression, a target is replaced more than once. {{{1}}}
XUDY0017 In a replace value of expression, a target is replaced more than once. {{{1}}}
XUDY0021 The resulting update expression contains duplicate attributes. copy $c := <x a='a'/> modify insert node attribute a {""} into $c return $c
XUDY0023 The resulting update expression conflicts with existing namespaces. {{{1}}}
XUDY0024 New namespaces conflict with each other. copy $n := <x/> modify (insert node attribute { QName('uri1', 'a') } { "" } into $n, insert node attribute { QName('uri2', 'a') } { "" } into $n) return $n
XUDY0027 Target of an update expression is an empty sequence. insert node <x/> into ()
XUDY0029 The target of an update expression has no parent node. insert node <new/> before <target/>
XUDY0030 Attributes cannot be inserted before or after the child of a document node. insert node <e a='a'/>/@a after document { <e/> }/*
XUDY0031 Multiple calls to fn:put() address the same URI. for $i in 1 to 3 return put(<a/>, 'file.txt')
XUST0001 No updating expression is allowed here. delete node /, "finished."
XUST0002 An updating expression is expected in the modify clause or an updating function. {{{1}}}
XUST0003 The revalidation mode was declared more than once. declare revalidation ...
XUST0026 The query contains a revalidate expression (revalidation is not supported by BaseX). declare revalidation ...
XUST0028 no return type may be specified in an updating function. declare updating function local:x() as item() { () }; ()
XUTY0004 New attributes to be inserted must directly follow the root node. insert node (<a/>, attribute a {""}) into <a/>
XUTY0005 A single element or document node is expected as target of an insert expression. insert node <new/> into attribute a { "" }
XUTY0006 A single element, text, comment or processing instruction is expected as target of an insert before/after expression. insert node <new/> after attribute a { "" }
XUTY0007 Only nodes can be deleted. delete node "string"
XUTY0008 A single element, text, attribute, comment or processing instruction is expected as target of a replace expression. replace node document { <a/> } with
XUTY0010 In a replace expression, in which no attributes are targeted, the replacing nodes must not be attributes as well. replace node <a></a>/b with attribute size { 1 }
XUTY0011 In the replace expression, in which attributes are targeted, the replacing nodes must be attributes as well. {{{1}}}
XUTY0012 In a rename expression, the target nodes must be an element, attribute or processing instruction. rename node text { 1 } as <x/>
XUTY0013 An expression in the copy clause must return a single node. {{{1}}}
XUTY0022 An attribute must not be inserted into a document node. insert node <e a=""/>/@a into document {'a'}

Full-Text Errors

Error Codes: FTDY, FTST

Code Description Examples
FTDY0016 The specified weight value is out of range. 'a' contains text 'a' weight { 1001 }
FTDY0017 The not in operator contains a string exclude. 'a' contains text 'a' not in (ftnot 'a')
FTDY0020 The search term uses an invalid wildcard syntax. 'a' contains text '.{}' using wildcards
FTST0007 The full-text expression contains an ignore option (the ignore option is not supported by BaseX). 'a' contains text 'a' without content 'x'
FTST0008 The specified stop word file could not be opened or processed. 'a' contains text 'a' using stop words at 'unknown.txt'
FTST0009 The specified language is not supported. 'a' contains text 'a' using language 'aaa'
FTST0018 The specified thesaurus file could not be opened or processed. 'a' contains text 'a' using thesaurus at 'aaa'
FTST0019 A match option was specified more than once. 'a' contains text 'a' using stemming using stemming

ZIP Module Errors

Error Codes: FOZP

Code Description Examples
FOZP0001 The specified path does not exist. zip:entries('unknown.zip')
FOZP0002 Entries in the description of a ZIP archive are unknown, missing, or invalid. {{{1}}}
FOZP0003 ZIP file extraction or creation fails for some other reason (e.g.: new ZIP file contains no entries, or duplicates).

Cryptographic Module Errors

Error Codes: FOCX

Code Description Examples
FOCX0001 Canonicalization algorithm is not supported.
FOCX0002 Digest algorithm is not supported.
FOCX0003 Signature algorithm is not supported.
FOCX0004 XPath expression is invalid.
FOCX0005 Invalid name for $digital-certificate root.
FOCX0006 Invalid child element of $digital-certificate.
FOCX0007 Key store is null.
FOCX0008 I/O error while reading keystore.
FOCX0009 Permission denied to read keystore.
FOCX0010 Keystore URL is invalid.
FOCX0011 Keystore type is not supported.
FOCX0012 Cannot find key for alias in given keystore.
FOCX0013 Hashing algorithm is not supported.
FOCX0014 Encoding method is not supported.
FOCX0015 Cannot find signature element.
FOCX0016 No such padding.
FOCX0017 Incorrect padding.
FOCX0018 Encryption type is not supported.
FOCX0019 Secret key is invalid.
FOCX0020 Illegal block size.
FOCX0021 Algorithm is not supported.
FOCX0022 Decryption type is not supported.
FOCX9999 Signature type is not supported.
FOCX9998 Not (yet) supported.
FOCX9997 Algorithm not compatible with encryption type.
FOCX9996 IO Exception.
FOCX9995 Keystore exception.
FOCX9994 Signature exception.
FOCX9993 Invalid algorithm.
FOCX9992 Invalid certificate alias.

File Module Errors

Error Codes: FOFL

Code Description Examples
FOFL0001 The specified path does not exist. file:size('unknown.txt')
FOFL0002 The specified path does already exist. file:create-directory('existing-directory')
FOFL0003 The specified path does not point to a directory. file:list('file.txt')
FOFL0004 The specified path points to a directory. file:read('directory')
FOFL0005 The specified encoding is not supported. file:read('file.txt', 'UTF99')
FOFL9999 A file operation fails for any other reason.

HTTP Module Errors

Error Codes: FOHC

Code Description Examples
FOHC0001 The specified URL is invalid.
FOHC0002 The requested method is not valid for HTTP.
FOHC0004 The request element is not valid.
FOHC0005 An HTTP error occurred.
FOHC0006 The provided credentials are invalid.
FOHC0007 The HTML input could not be parsed.

Packaging Errors

Error Codes: PACK

Code Description Examples
PACK0001 The specified package does not exist.
PACK0002 The package uses an invalid namespace URI.
PACK0003 A required package is not installed.
PACK0004 Invalid package descriptor found.
PACK0005 A module is already installed within another package.
PACK0006 The current package could not be parsed.
PACK0007 A package cannot be deleted.
PACK0008 A package depends on another package.
PACK0009 The addressed package version is not supported.
PACK0010 Invalid JAR descriptor found.
PACK0011 The JAR descriptor could not be read.

SQL Module Errors

Error Codes: FOSQ

Code Description Examples
FOSQ0001 An SQL exception occurred.
FOSQ0002 No opened connection with the specified id found.
FOSQ0003 Number of parameters differs from number of placeholders.
FOSQ0004 No parameter type specified.
FOSQ0005 An unexpected attribute was found.
FOSQ0006 The specified format is illegal.
FOSQ0007 The JDBC driver cannot be initialized.