com.vladium.emma
Class EMMARuntimeException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended bycom.vladium.util.exception.AbstractRuntimeException
                  extended bycom.vladium.emma.EMMARuntimeException
All Implemented Interfaces:
ICodedException, IThrowableWrapper, java.io.Serializable

public class EMMARuntimeException
extends AbstractRuntimeException

Author:
Vlad Roubtsov, (C) 2003
See Also:
Serialized Form

Field Summary
 
Fields inherited from class com.vladium.util.exception.AbstractRuntimeException
 
Fields inherited from class java.lang.RuntimeException
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
EMMARuntimeException()
          Constructs an exception with null message and null cause.
EMMARuntimeException(java.lang.String message)
          Constructs an exception with given error message/code and null cause.
EMMARuntimeException(java.lang.String message, java.lang.Object[] arguments)
          Constructs an exception with given error message/code and null cause.
EMMARuntimeException(java.lang.String message, java.lang.Object[] arguments, java.lang.Throwable cause)
          Constructs an exception with given error message/code and given cause.
EMMARuntimeException(java.lang.String message, java.lang.Throwable cause)
          Constructs an exception with given error message/code and given cause.
EMMARuntimeException(java.lang.Throwable cause)
          Constructs an exception with null error message/code and given cause.
 
Methods inherited from class com.vladium.util.exception.AbstractRuntimeException
__printStackTrace, __printStackTrace, addExceptionResource, getCause, getErrorCode, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EMMARuntimeException

public EMMARuntimeException()
Constructs an exception with null message and null cause.


EMMARuntimeException

public EMMARuntimeException(java.lang.String message)
Constructs an exception with given error message/code and null cause.

Parameters:
message - the detail message [can be null]

EMMARuntimeException

public EMMARuntimeException(java.lang.String message,
                            java.lang.Object[] arguments)
Constructs an exception with given error message/code and null cause.

Parameters:
message - the detail message [can be null]
arguments - message format parameters [can be null or empty]
See Also:
MessageFormat

EMMARuntimeException

public EMMARuntimeException(java.lang.Throwable cause)
Constructs an exception with null error message/code and given cause.

Parameters:
cause - the cause [nested exception] [can be null]

EMMARuntimeException

public EMMARuntimeException(java.lang.String message,
                            java.lang.Throwable cause)
Constructs an exception with given error message/code and given cause.

Parameters:
message - the detail message [can be null]
cause - the cause [nested exception] [can be null]

EMMARuntimeException

public EMMARuntimeException(java.lang.String message,
                            java.lang.Object[] arguments,
                            java.lang.Throwable cause)
Constructs an exception with given error message/code and given cause.

Parameters:
message - the detail message [can be null]
arguments - message format parameters [can be null or empty]
cause - the cause [nested exception] [can be null]
See Also:
MessageFormat