Returns the extra information message which was provided when this Throwable was created. Returns null if no message was provided at creation time. Subclasses may override this method to return localized text for the message. The Android reference implementation returns the unlocaliz
()
| 146 | * @return this {@code Throwable}'s localized detail message. |
| 147 | */ |
| 148 | public String getLocalizedMessage() { |
| 149 | return getMessage(); |
| 150 | } |
| 151 | |
| 152 | /** |
| 153 | * This native must be implemented to use the reference implementation of |