Home
last modified time | relevance | path

Searched refs:ApnException (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Messaging/src/android/support/v7/mms/
DApnException.java22 public class ApnException extends Exception { class
24 public ApnException() { in ApnException() method in ApnException
28 public ApnException(String message) { in ApnException() method in ApnException
32 public ApnException(Throwable cause) { in ApnException() method in ApnException
36 public ApnException(String message, Throwable cause) { in ApnException() method in ApnException
DMmsRequest.java155 throw new ApnException("No valid APN"); in execute()
190 } catch (ApnException e) { in execute()
/packages/services/Mms/src/com/android/mms/service/exception/
DApnException.java22 public class ApnException extends Exception { class
24 public ApnException() { in ApnException() method in ApnException
28 public ApnException(String message) { in ApnException() method in ApnException
32 public ApnException(Throwable cause) { in ApnException() method in ApnException
36 public ApnException(String message, Throwable cause) { in ApnException() method in ApnException
/packages/services/Mms/src/com/android/mms/service/
DApnSettings.java27 import com.android.mms.service.exception.ApnException;
90 throws ApnException { in load()
115 throw new ApnException("Can not find valid APN"); in load()
119 throws ApnException { in getApnSettingsFromCursor()
138 throw new ApnException("Invalid MMSC url " + mmscUrl); in getApnSettingsFromCursor()
DMmsRequest.java31 import com.android.mms.service.exception.ApnException;
161 } catch (ApnException e) { in execute()
179 } catch (ApnException e) { in execute()
/packages/services/Mms/tests/robotests/src/com/android/mms/service/
DApnSettingsTest.java33 import com.android.mms.service.exception.ApnException;
56 assertThrows(ApnException.class, in load_noApnSettings_throwsApnException()