HomeSort by relevance Sort by last modified time
    Searched refs:ContentRestrictionException (Results 1 - 11 of 11) sorted by null

  /packages/apps/Mms/src/com/android/mms/
ContentRestrictionException.java 23 public class ContentRestrictionException extends RuntimeException {
26 public ContentRestrictionException() {
30 public ContentRestrictionException(String msg) {
34 public ContentRestrictionException(Exception cause) {
ExceedMessageSizeException.java 23 public final class ExceedMessageSizeException extends ContentRestrictionException {
ResolutionException.java 23 public final class ResolutionException extends ContentRestrictionException {
UnsupportContentTypeException.java 23 public final class UnsupportContentTypeException extends ContentRestrictionException {
  /packages/apps/Mms/src/com/android/mms/model/
ContentRestriction.java 21 import com.android.mms.ContentRestrictionException;
25 throws ContentRestrictionException;
27 void checkImageContentType(String contentType) throws ContentRestrictionException;
29 void checkAudioContentType(String contentType) throws ContentRestrictionException;
31 void checkVideoContentType(String contentType) throws ContentRestrictionException;
33 void checkResolution(int width, int height) throws ContentRestrictionException;
CarrierContentRestriction.java 25 import com.android.mms.ContentRestrictionException;
48 throws ContentRestrictionException {
55 throw new ContentRestrictionException("Negative message size"
65 public void checkResolution(int width, int height) throws ContentRestrictionException {
72 throws ContentRestrictionException {
74 throw new ContentRestrictionException("Null content type to be check");
84 throws ContentRestrictionException {
86 throw new ContentRestrictionException("Null content type to be check");
96 throws ContentRestrictionException {
98 throw new ContentRestrictionException("Null content type to be check")
    [all...]
AudioModel.java 20 import com.android.mms.ContentRestrictionException;
151 protected void checkContentRestriction() throws ContentRestrictionException {
ImageModel.java 20 import com.android.mms.ContentRestrictionException;
136 protected void checkContentRestriction() throws ContentRestrictionException {
VideoModel.java 20 import com.android.mms.ContentRestrictionException;
190 protected void checkContentRestriction() throws ContentRestrictionException {
SlideshowModel.java 21 import com.android.mms.ContentRestrictionException;
587 public void checkMessageSize(int increaseSize) throws ContentRestrictionException {
SlideModel.java 20 import com.android.mms.ContentRestrictionException;
273 * @throws ContentRestrictionException when can not add this object.

Completed in 76 milliseconds