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

EMMAException

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

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

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

param
message the detail message [can be null]

        super (message);
    
public EMMAException(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 EMMAException(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 EMMAException(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 EMMAException(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