https://netsuiteprofessionals.com logo
Title
a

alien4u

12/06/2018, 3:24 PM
The Record still save...what about that???
Was bypassing the
throw
because was inside a
try
statement....
e

erictgrubaugh

12/06/2018, 4:36 PM
Yeah
try {
  throw aThing;
} catch(e) {
  ...
}
will just enter the
catch
s

stalbert

12/06/2018, 7:49 PM
swallowing all exceptions is usually a poor practice, and this is an example of why