Class Overview
This exception class represents the condition when an incoming Task
request is malformed.
Summary
[Expand]
Inherited Constants |
From interface
com.microstrategy.web.objects.actions.HandlerStatusCodes
int |
TASK_INTERNAL_ERROR |
This status code indicates that while the Task seems to be properly configured
and the input request is well formed, an unexpected error occured. |
int |
TASK_MISCONFIGURED |
This status code indicates while that a valid Task was requested
and properly formed, the Task itself was misconfigured. |
int |
TASK_NOT_FOUND |
This status code indicates that while a Task request was made,
it could not be found by any of the Task factories. |
int |
TASK_NOT_REQUESTED |
This status code indicates that the Task Processor Controller
was invoked, though no Task was requested. |
int |
TASK_REQUEST_MALFORMED |
This status code indicates that while a Task request was made,
and the Task was located, the request was malformed. |
int |
TASK_REQUEST_RESUBMIT |
This status code indicates that the process is taking time on the i-server and
the client can resubmit the task to keep the client<->web-server session alive
OR perform some other action knowing that the results are not ready yet
|
int |
TASK_SUCCESS |
This is the success status code. |
int |
TASK_UNAUTHORIZED |
This status code indicates that current user is not authorized to execute the requested task. |
|
[Expand]
Inherited Methods |
From class
com.microstrategy.web.objects.actions.HandlerException
String
|
getGenericMessage()
Returns the generic message for this exception.
|
int
|
getStatusCode()
Returns the Status code associated with this exception.
|
Integer
|
getTaskErrorCode()
Returns the Task Error Code associated with this exception.
|
void
|
setGenericMessage(String genericMessage)
Sets the generic message for this exception.
|
void
|
setStatusCode(int statusCode)
Sets the Status code associated with this exception.
|
void
|
setTaskErrorCode(int taskErrCode)
Sets the Task Error Code for this exception.
|
|
From class
java.lang.Throwable
synchronized
final
void
|
addSuppressed(Throwable arg0)
|
synchronized
Throwable
|
fillInStackTrace()
|
synchronized
Throwable
|
getCause()
|
String
|
getLocalizedMessage()
|
String
|
getMessage()
|
StackTraceElement[]
|
getStackTrace()
|
synchronized
final
Throwable[]
|
getSuppressed()
|
synchronized
Throwable
|
initCause(Throwable arg0)
|
void
|
printStackTrace()
|
void
|
printStackTrace(PrintWriter arg0)
|
void
|
printStackTrace(PrintStream arg0)
|
void
|
setStackTrace(StackTraceElement[] arg0)
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
Public Constructors
public
HandlerRequestMalformedException
(String msg)
Creates a new HandlerRequestMalformedException object.
Parameters
msg |
The message to associate with this exception.
|
public
HandlerRequestMalformedException
(Exception e)
Creates a new HandlerRequestMalformedException object.
Parameters
e |
An inner Exception to associate with this exception.
|