Hello everyone,
In usual Try.. Catch, as per my understanding, we can specified the error like for example
catch (Exception::Error)
{
error("Calculation terminated");
}
And if I correct, when we call Throw Error(""); this will be redirect to that above Catch, and the same error message will be shown.
Is there a function to show the original error message or whatever the system provide us that "notify" us there is an error, instead our own error message ?
Please advice.
Thanks