Package | Description |
---|---|
tap |
Modifier and Type | Method and Description |
---|---|
ExecutionProgression |
TAPException.getExecutionStatus()
Get the execution status/phase of an ADQL query when the error occurred.
|
static ExecutionProgression |
ExecutionProgression.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionProgression[] |
ExecutionProgression.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
long |
TAPExecutionReport.getDuration(ExecutionProgression tapStep)
Get the duration corresponding to the given job execution step.
|
protected int |
TAPExecutionReport.getIndexDuration(ExecutionProgression tapProgression)
Map the execution progression with an index inside the
TAPExecutionReport.durations
array. |
void |
TAPExecutionReport.setDuration(ExecutionProgression tapStep,
long duration)
Set the duration corresponding to the given execution step.
|
Constructor and Description |
---|
TAPException(java.lang.String message,
int httpErrorCode,
java.lang.String query,
ExecutionProgression status)
TAP exception with the ADQL query which were executed when the error occurred,
AND with its execution status (e.g.
|
TAPException(java.lang.String message,
java.lang.String query,
ExecutionProgression status)
TAP exception with the ADQL query which were executed when the error occurred,
AND with its execution status (e.g.
|
TAPException(java.lang.String message,
java.lang.Throwable cause,
int httpErrorCode,
java.lang.String query,
ExecutionProgression status)
Build a
TAPException with the given message and cause,
AND with the ADQL query which were executed when the error occurred
AND with its execution status (e.g. |
TAPException(java.lang.String message,
java.lang.Throwable cause,
java.lang.String query,
ExecutionProgression status)
Build a
TAPException with the given message and cause,
AND with the ADQL query which were executed when the error occurred
AND with its execution status (e.g. |
TAPException(java.lang.Throwable cause,
int httpErrorCode,
java.lang.String query,
ExecutionProgression status)
Build a
TAPException with the given cause AND with the ADQL query which were executed when the error occurred
AND with its execution status (e.g. |
TAPException(java.lang.Throwable cause,
java.lang.String query,
ExecutionProgression status)
Build a
TAPException with the given cause AND with the ADQL query which were executed when the error occurred
AND with its execution status (e.g. |
TAPException(UWSException cause,
int httpErrorCode,
ExecutionProgression status)
TAP exception wrapping the given
UWSException and storing the current ADQL query execution status. |