What's the way to raise and catch my own errors in Cach� Basic? I'd like to have something like the throw/catch system in java. I have the idea that the Err object needs a error number, so it only allows system-errors, and not errors that I specify. So if I try:
Err.Raise(102, classname & " does not have property " & property, "MyPackage.MyClass.MyMethod") I get a run-time error (and not the error that I want to have). Do you know how to specify and catch my own errors? Joost Verhoog
