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

Commit b10d9684 authored by joonhunshin's avatar joonhunshin
Browse files

Add handling of missing ServiceSpecificException

Add handling of missing ServiceSpecificException

Bug: 261126196
Test: atest ImsServiceTest
Change-Id: I8f0d7637f7bf110d635b659dc473b200be1819ca
parent 2800296d
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1831,6 +1831,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);
        }
    }