FileDocCategorySizeDatePackage
ContentClassException.javaAPI DocAndroid 1.5 API1301Wed May 06 22:42:46 BST 2009com.android.mms

ContentClassException

public final class ContentClassException extends com.google.android.mms.MmsException

Fields Summary
private final boolean
mIsRestricted
Constructors Summary
public ContentClassException(boolean isRestricted)

        super();
        mIsRestricted = isRestricted;
    
public ContentClassException(String msg, boolean isRestricted)

        super(msg);
        mIsRestricted = isRestricted;
    
public ContentClassException(Exception cause, boolean isRestricted)

        super(cause);
        mIsRestricted = isRestricted;
    
Methods Summary
public booleanisRestricted()

        return mIsRestricted;