|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.lang.Throwable
java.lang.Exception
edu.udo.cs.yale.operator.OperatorException
edu.udo.cs.yale.operator.UserError
public class UserError
Exception class whose instances are thrown due to a user error, for example
missing files or wrong operator architecture.
In order to create a UserError, do the following:
UserErrorMessages.properties
in the
resources
directory. Look for an appropriate messsage. If you
find one, remember its id number. If not, create a new one in the correct
groupjava.text.MessageFormat
. Especially, any
ocurrence of curly brackets will be replaced. Be careful with quotes; it
might be a good idea to read the ducumentation of MessageFormat first.
Field Summary | |
---|---|
private int |
code
|
private static java.text.MessageFormat |
formatter
|
private static java.util.ResourceBundle |
messages
|
private Operator |
operator
|
private static long |
serialVersionUID
|
Constructor Summary | |
---|---|
UserError(Operator operator,
int code)
Convenience constructor for messages with no arguments. |
|
UserError(Operator operator,
int code,
java.lang.Object argument1)
Convenience constructor for messages with exactly one argument. |
|
UserError(Operator operator,
int code,
java.lang.Object[] arguments)
|
|
UserError(Operator operator,
int code,
java.lang.Object argument1,
java.lang.Object argument2)
Convenience constructor for messages with exactly two arguments. |
|
UserError(Operator operator,
java.lang.Throwable cause,
int code)
Convenience constructor for messages with no arguments and cause. |
|
UserError(Operator operator,
java.lang.Throwable cause,
int code,
java.lang.Object argument1)
Convenience constructor for messages with exactly one arguments and cause. |
|
UserError(Operator operator,
java.lang.Throwable cause,
int code,
java.lang.Object[] arguments)
Creates a new UserError. |
Method Summary | |
---|---|
int |
getCode()
Returns the error code. |
java.lang.String |
getDetails()
Returns the error details/description. |
static java.lang.String |
getErrorMessage(int code,
java.lang.Object[] arguments)
|
java.lang.String |
getErrorName()
Returns the error name. |
java.lang.String |
getHTMLMessage()
Returns a html message. |
Operator |
getOperator()
|
static java.lang.String |
getResourceString(int code,
java.lang.String key,
java.lang.String deflt)
Returns a resource message for the given error code. |
void |
setOperator(Operator operator)
|
Methods inherited from class java.lang.Throwable |
---|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final long serialVersionUID
private static java.util.ResourceBundle messages
private static final java.text.MessageFormat formatter
private int code
private Operator operator
Constructor Detail |
---|
public UserError(Operator operator, java.lang.Throwable cause, int code, java.lang.Object[] arguments)
operator
- The Operator
in which the exception occured. If
operator is null, the operator is assumed to be the current
operator of the current experiment (returned by
Yale.getExperiment()
. This may not work properly if
Yale is invoked other than by calling one of the main methods.cause
- The exception that caused the user error. May be null. Using
this makes debugging a lot easier.code
- The error code referring to a message in the file
UserErrorMessages.properties
arguments
- Arguments for the short message.public UserError(Operator operator, java.lang.Throwable cause, int code)
public UserError(Operator operator, int code, java.lang.Object[] arguments)
public UserError(Operator operator, int code)
public UserError(Operator operator, int code, java.lang.Object argument1)
public UserError(Operator operator, java.lang.Throwable cause, int code, java.lang.Object argument1)
public UserError(Operator operator, int code, java.lang.Object argument1, java.lang.Object argument2)
Method Detail |
---|
public java.lang.String getDetails()
NoBugError
getDetails
in interface NoBugError
public java.lang.String getErrorName()
NoBugError
getErrorName
in interface NoBugError
public int getCode()
NoBugError
getCode
in interface NoBugError
public Operator getOperator()
public void setOperator(Operator operator)
public static java.lang.String getErrorMessage(int code, java.lang.Object[] arguments)
public static java.lang.String getResourceString(int code, java.lang.String key, java.lang.String deflt)
key
- one out of "name", "short",
"long"public java.lang.String getHTMLMessage()
NoBugError
getHTMLMessage
in interface NoBugError
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |