Removed "NOTICE" in console error print.

This commit is contained in:
James Quinley 2022-02-08 08:17:10 -08:00
parent 1c31ed5a3c
commit 490be5a35a

View File

@ -46,7 +46,7 @@ public class emailVerify {
System.out.println("Alert Sent"); System.out.println("Alert Sent");
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
System.err.println("Notice Was Not Sent Because Of An Error."); System.err.println("Was Not Sent Because Of An Error.");
} }
} }