Package org.eclipse.wst.xml.xpath2.processor
public class DynamicError extends org.eclipse.wst.xml.xpath2.processor.XPathExceptionDynamic Error like division by 0 or type errors.
Constructor Summary |
DynamicError(java.lang.String code
,
java.lang.String err) |
DynamicError(org.eclipse.wst.xml.xpath2.processor.internal.TypeError te) |
Method Summary | |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | argument_type_error(java.lang.Class type) Returns the dynamic error. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | cant_cast(java.lang.String err) Returns the dynamic error. |
public java.lang.String | code() Returns the string of the code. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | contextUndefined() |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | div_zero(java.lang.String msg) Returns the error message when reads a Division by zero |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | doc_not_found(java.lang.String msg) Returns the error message when fn:doc cannot load its document |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | empty_seq(java.lang.String msg) Returns the error message |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | errorResolvingURI() Error resolving relative uri against base-uri. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | inconsistentTimeZone() The two arguments to fn:dateTime have inconsistent timezones |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | inputToLargeForDecimal() |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalid_doc(java.lang.String msg) Returns the error message when reads Invalid argument to fn:doc |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidCollectionArgument() Returns the error message when reads Invalid argument to fn:collection |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidForCastConstructor() Data is invalid for casting or the data type constructor. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidLexicalValue() Invalid lexical value |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidPrefix() No namespace found for prefix. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidTimezone() Invalid Timezone value. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | invalidType() |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | lexical_error(java.lang.String msg) Returns the error message when reads an Invalid lexical value |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | more_one_item(java.lang.String msg) Returns the error message |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | nan() Overflow/underflow in duration operation. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | noBaseURI() No base-uri defined. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | noContextDoc() No context document |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | not_cmp(java.lang.String msg) Returns the error message when reads an Items not comparable |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | not_one(java.lang.String msg) Returns the error message |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | numeric_overflow(java.lang.String msg) Numeric operation overflow/underflow |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | overflowDateTime() Overflow/underflow in date/time operation |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | overflowUnderflow() Overflow/underflow in duration operation. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | regex_error(java.lang.String err) Returns the dynamic error. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | regex_flags_error(java.lang.String err) Returns the Dynamic Error for invalid flags in regular expressions |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | regex_match_zero_length(java.lang.String err) Returns the dynamic error. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | runtime_error(java.lang.String msg
,
java.lang.Throwable err) Returns the dynamic error for an unsupported normalization form |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | throw_type_error() Returns the dynamic error. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | unsupported_codepoint(java.lang.String err) Returns the dynamic error for an unsupported Unicode codepoint |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | unsupported_collation(java.lang.String collationName) Returns the dynamic error for an unsupported normalization form |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | unsupported_normalization_form(java.lang.String err) Returns the dynamic error for an unsupported normalization form |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | user_error(java.lang.String ns
,
java.lang.String code
,
java.lang.String desc) Returns the dynamic error. |
public static org.eclipse.wst.xml.xpath2.processor.DynamicError | user_error(java.lang.String err) Returns the dynamic error. |
Constructor Detail |
public DynamicError(java.lang.String code
,
java.lang.String err)
Constructor for Dynamic Error.
public DynamicError(org.eclipse.wst.xml.xpath2.processor.internal.TypeError te)
Constructor for Dynamic Error.
Methods Detail |
public org.eclipse.wst.xml.xpath2.processor.DynamicError argument_type_error(java.lang.Class type)
Returns the dynamic error.
type
- Type found
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError cant_cast(java.lang.String err)
Returns the dynamic error.
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public java.lang.String code()
Returns the string of the code.
java.lang.String
- the code.
public org.eclipse.wst.xml.xpath2.processor.DynamicError contextUndefined()
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError div_zero(java.lang.String msg)
Returns the error message when reads a Division by zero
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError doc_not_found(java.lang.String msg)
Returns the error message when fn:doc cannot load its document
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError empty_seq(java.lang.String msg)
Returns the error message
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError errorResolvingURI()
Error resolving relative uri against base-uri.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError inconsistentTimeZone()
The two arguments to fn:dateTime have inconsistent timezones
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError inputToLargeForDecimal()
org.eclipse.wst.xml.xpath2.processor.DynamicError
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalid_doc(java.lang.String msg)
Returns the error message when reads Invalid argument to fn:doc
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidCollectionArgument()
Returns the error message when reads Invalid argument to fn:collection
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidForCastConstructor()
Data is invalid for casting or the data type constructor.
org.eclipse.wst.xml.xpath2.processor.DynamicError
- FORG0001
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidLexicalValue()
Invalid lexical value
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidPrefix()
No namespace found for prefix.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidTimezone()
Invalid Timezone value.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError invalidType()
org.eclipse.wst.xml.xpath2.processor.DynamicError
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError lexical_error(java.lang.String msg)
Returns the error message when reads an Invalid lexical value
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError more_one_item(java.lang.String msg)
Returns the error message
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError nan()
Overflow/underflow in duration operation.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError noBaseURI()
No base-uri defined.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError noContextDoc()
No context document
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError not_cmp(java.lang.String msg)
Returns the error message when reads an Items not comparable
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError not_one(java.lang.String msg)
Returns the error message
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError numeric_overflow(java.lang.String msg)
Numeric operation overflow/underflow
msg
- is the message
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the make_error
public org.eclipse.wst.xml.xpath2.processor.DynamicError overflowDateTime()
Overflow/underflow in date/time operation
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError overflowUnderflow()
Overflow/underflow in duration operation.
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError regex_error(java.lang.String err)
Returns the dynamic error.
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError regex_flags_error(java.lang.String err)
Returns the Dynamic Error for invalid flags in regular expressions
err
org.eclipse.wst.xml.xpath2.processor.DynamicError
public org.eclipse.wst.xml.xpath2.processor.DynamicError regex_match_zero_length(java.lang.String err)
Returns the dynamic error.
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError runtime_error(java.lang.String msg
,
java.lang.Throwable err)
Returns the dynamic error for an unsupported normalization form
msg
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError throw_type_error()
Returns the dynamic error.
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
org.eclipse.wst.xml.xpath2.processor.DynamicError - a Dynamic Error
public org.eclipse.wst.xml.xpath2.processor.DynamicError unsupported_codepoint(java.lang.String err)
Returns the dynamic error for an unsupported Unicode codepoint
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError unsupported_collation(java.lang.String collationName)
Returns the dynamic error for an unsupported normalization form
collationName
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError unsupported_normalization_form(java.lang.String err)
Returns the dynamic error for an unsupported normalization form
err
- is the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError user_error(java.lang.String ns
,
java.lang.String code
,
java.lang.String desc)
Returns the dynamic error.
ns
code
desc
- is the description of the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.
public org.eclipse.wst.xml.xpath2.processor.DynamicError user_error(java.lang.String err)
Returns the dynamic error.
err
- is the description of the error
org.eclipse.wst.xml.xpath2.processor.DynamicError
- the DynamicError.