FileDocCategorySizeDatePackage
MmsException.javaAPI DocAndroid 1.5 API1642Wed May 06 22:41:56 BST 2009com.google.android.mms

MmsException

public class MmsException extends Exception
A generic exception that is thrown by the Mms client.

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public MmsException()
Creates a new MmsException.


             
      
        super();
    
public MmsException(String message)
Creates a new MmsException with the specified detail message.

param
message the detail message.

        super(message);
    
public MmsException(Throwable cause)
Creates a new MmsException with the specified cause.

param
cause the cause.

        super(cause);
    
public MmsException(String message, Throwable cause)
Creates a new MmsException with the specified detail message and cause.

param
message the detail message.
param
cause the cause.

        super(message, cause);
    
Methods Summary