FileDocCategorySizeDatePackage
EMMARuntimeException.javaAPI DocAndroid 1.5 API2981Wed May 06 22:41:16 BST 2009com.vladium.emma

EMMARuntimeException

public class EMMARuntimeException extends com.vladium.util.exception.AbstractRuntimeException
author
Vlad Roubtsov, (C) 2003

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

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

param
message the detail message [can be null]

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

param
message the detail message [can be null]
param
arguments message format parameters [can be null or empty]
see
java.text.MessageFormat

        super (message, arguments);
    
public EMMARuntimeException(Throwable cause)
Constructs an exception with null error message/code and given cause.

param
cause the cause [nested exception] [can be null]

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

param
message the detail message [can be null]
param
cause the cause [nested exception] [can be null]

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

param
message the detail message [can be null]
param
arguments message format parameters [can be null or empty]
param
cause the cause [nested exception] [can be null]
see
java.text.MessageFormat

        super (message, arguments, cause);
    
Methods Summary