ContentClassExceptionpublic 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 boolean | isRestricted()
return mIsRestricted;
|
|