When a qsa script calls a qt method, is it possible for the c++ method to throw an excepion which then can be catched by the script?
example:
Code:
// QSA Script try { ... Application.object.property = 10; ... } catch ( e ) { if (e = "some error") { // do somesthing } else { // do something else } }
Code:
// qt method MyObject::setProperty(int value) { ... ... }