Can anyone explain the exception handling in Tizen?
In FAQ i found:
Q: Can I use C++ try-catch exception handling?
A: No, C++ try-catch exception handling is not supported in Tizen.
But in my experiments c++ try catch is working fine when testing on a Tizen Device.
Here is what I did:
- Open Tizen SDK
- Create an Empty Tizen Native C++ project
- In main Put a try catch statement. Put logs in catch and try.
Does this mean that i can use try catch for my methods but not for Tizen APIs and Classes?