| java.lang.Object | |||
| ↳ | java.lang.Throwable | ||
| ↳ | java.lang.Exception | ||
| ↳ | com.gsma.services.rcs.RcsServiceException | ||
Known Direct Subclasses
|
Rcs service exception
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
RcsServiceException(String message)
Constructor
| |||||||||||
|
RcsServiceException(Throwable cause)
Constructs a new Exception with the current stack trace and the specified cause.
| |||||||||||
|
RcsServiceException(String message, Throwable cause)
Constructor
| |||||||||||
| Protected Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| static String |
extractServerException(Exception e)
Extracts server side exception message thrown over the AIDL layer after parsing it based on
| ||||||||||
| static boolean |
isIntendedException(Exception e, Class<?> clazz)
Checks if the exception is one of the intended server side exception that has been thrown
over the AIDL layer.
| ||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
| |||||||||||
Constructor
| message | Error message obtained either from a constant string or through e.getMessage() |
|---|
Constructs a new Exception with the current stack trace and the specified cause.
| cause | the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
|---|
Constructor
| message | Error message obtained either from a constant string or through e.getMessage() |
|---|---|
| cause | the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
Extracts server side exception message thrown over the AIDL layer after parsing it based on
| e | Exception |
|---|
Checks if the exception is one of the intended server side exception that has been thrown over the AIDL layer.
| e | Exception |
|---|---|
| clazz | Class |