The Record still save...what about that???
# suitescript
a
The Record still save...what about that???
Was bypassing the
throw
because was inside a
try
statement....
e
Yeah
Copy code
try {
  throw aThing;
} catch(e) {
  ...
}
will just enter the
catch
s
swallowing all exceptions is usually a poor practice, and this is an example of why