edu.udo.cs.yale
Class NoOpUserError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by edu.udo.cs.yale.NoOpUserError
All Implemented Interfaces:
NoBugError, java.io.Serializable

public class NoOpUserError
extends java.lang.Exception
implements NoBugError

An exception caused outside an operator which is not a bug, but caused by the user. Unfortunately, this class doubles most of the code of UserError.

Version:
$Id: NoOpUserError.java,v 1.9 2006/08/14 12:28:15 ingomierswa Exp $
Author:
Simon Fischer, Ingo Mierswa
See Also:
Serialized Form

Field Summary
private  int code
           
private static long serialVersionUID
           
 
Constructor Summary
NoOpUserError(int code)
          Convenience constructor for messages with no arguments.
NoOpUserError(int code, java.lang.Object argument1)
          Convenience constructor for messages with exactly one argument.
NoOpUserError(int code, java.lang.Object[] arguments)
           
NoOpUserError(int code, java.lang.Object argument1, java.lang.Object argument2)
          Convenience constructor for messages with exactly two arguments.
NoOpUserError(java.lang.Throwable cause, int code)
          Convenience constructor for messages with no arguments and cause.
NoOpUserError(java.lang.Throwable cause, int code, java.lang.Object argument1)
          Convenience constructor for messages with exactly one arguments and cause.
NoOpUserError(java.lang.Throwable cause, int code, java.lang.Object[] arguments)
          Creates a new NoOpUserError.
 
Method Summary
 int getCode()
          Returns the error code.
 java.lang.String getDetails()
          Returns the error details/description.
 java.lang.String getErrorName()
          Returns the error name.
 java.lang.String getHTMLMessage()
          Returns a html message.
 
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

serialVersionUID

private static final long serialVersionUID
See Also:
Constant Field Values

code

private int code
Constructor Detail

NoOpUserError

public NoOpUserError(java.lang.Throwable cause,
                     int code,
                     java.lang.Object[] arguments)
Creates a new NoOpUserError.

Parameters:
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.


NoOpUserError

public NoOpUserError(java.lang.Throwable cause,
                     int code)
Convenience constructor for messages with no arguments and cause.


NoOpUserError

public NoOpUserError(int code,
                     java.lang.Object[] arguments)

NoOpUserError

public NoOpUserError(int code)
Convenience constructor for messages with no arguments.


NoOpUserError

public NoOpUserError(int code,
                     java.lang.Object argument1)
Convenience constructor for messages with exactly one argument.


NoOpUserError

public NoOpUserError(java.lang.Throwable cause,
                     int code,
                     java.lang.Object argument1)
Convenience constructor for messages with exactly one arguments and cause.


NoOpUserError

public NoOpUserError(int code,
                     java.lang.Object argument1,
                     java.lang.Object argument2)
Convenience constructor for messages with exactly two arguments.

Method Detail

getDetails

public java.lang.String getDetails()
Description copied from interface: NoBugError
Returns the error details/description.

Specified by:
getDetails in interface NoBugError


getErrorName

public java.lang.String getErrorName()
Description copied from interface: NoBugError
Returns the error name.

Specified by:
getErrorName in interface NoBugError


getCode

public int getCode()
Description copied from interface: NoBugError
Returns the error code.

Specified by:
getCode in interface NoBugError


getHTMLMessage

public java.lang.String getHTMLMessage()
Description copied from interface: NoBugError
Returns a html message.

Specified by:
getHTMLMessage in interface NoBugError



Copyright © 2001-2006