Add print stack trace and exception message

This commit is contained in:
2023-02-08 16:58:00 -06:00
parent 700802f329
commit c620917606

View File

@ -887,7 +887,8 @@ public class QInstanceValidator
////////////////////////////////////////// //////////////////////////////////////////
// otherwise, just append the exception // // otherwise, just append the exception //
////////////////////////////////////////// //////////////////////////////////////////
errors.add(prefix + ": " + e); e.printStackTrace();
errors.add(prefix + ": " + e.getMessage());
} }
} }
} }