Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b45e581a authored by Joonhun Shin's avatar Joonhun Shin Committed by Automerger Merge Worker
Browse files

Merge "Add handling of missing ServiceSpecificException" am: 08afbf5c am: 6e5bb402

parents 31f06858 6e5bb402
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1828,6 +1828,8 @@ public class ProvisioningManager {
            return getITelephony().isRcsVolteSingleRegistrationCapable(mSubId);
        } catch (RemoteException | IllegalStateException e) {
            throw new ImsException(e.getMessage(), ImsException.CODE_ERROR_SERVICE_UNAVAILABLE);
        } catch (ServiceSpecificException e) {
            throw new ImsException(e.getMessage(), e.errorCode);
        }
    }