java Exceptions color

Hi,
I call a java program from a cron job and i need to display the exceptions or Errors thrown by java(basically stacktrace) in the unix/linux console in the red color.Is it possible to do that? If so, pls. give me some pointers how to do that.
eg:

Exception in thread "main" java.lang.IllegalArgumentException: Catch if you Can!
        at HelloWorldApp.main(HelloWorldApp.java:4)

I should be able to display at least the line with Exception in red color.
I need this only for the console display as and when the Exception occurs when the java program spits out exceptions/Errors.

Thanks in Advance.