From a1ce0480c22eeaad4e00a5cb3b5c118e695c7a10 Mon Sep 17 00:00:00 2001 From: "twen.chang" Date: Fri, 4 Mar 2016 18:25:25 +0800 Subject: [PATCH] Add RIL Error code list BUG: 27589497 Change-Id: Ib8d7e0ff13f72106b79210ea786020c17b0ba842 --- .../java/com/android/internal/telephony/RILConstants.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/telephony/java/com/android/internal/telephony/RILConstants.java b/telephony/java/com/android/internal/telephony/RILConstants.java index bba357e07147b..fbc950fcedb05 100644 --- a/telephony/java/com/android/internal/telephony/RILConstants.java +++ b/telephony/java/com/android/internal/telephony/RILConstants.java @@ -92,6 +92,11 @@ public interface RILConstants { int NO_SMS_TO_ACK = 48; /* ACK received when there is no SMS to ack */ int NETWORK_ERR = 49; /* Received error from network */ int REQUEST_RATE_LIMITED = 50; /* Operation denied due to overly-frequent requests */ + int SIM_BUSY = 51; /* SIM is busy */ + int SIM_FULL = 52; /* The target EF is full */ + int NETWORK_REJECT = 53; /* Request is rejected by network */ + int OPERATION_NOT_ALLOWED = 54, /* Not allowed the request now */ + int EMPTY_RECORD = 55, /* The request record is empty */ // Below is list of OEM specific error codes which can by used by OEMs in case they don't want to // reveal particular replacement for Generic failure int OEM_ERROR_1 = 501;