I am trying to write a regular expression that will match all the exceptions
generated in my application log file. I have done it as such:
\bjava\.\w+\.\w +Exception:
However, there are two exceptions that I know will occur and I don't care to
catch them. So I need to modify the above regular expression to ignore the
two exceptions that will get generated.
I don't know how to do that. Your help will be much appreciated.
Thanks,
Z
generated in my application log file. I have done it as such:
\bjava\.\w+\.\w +Exception:
However, there are two exceptions that I know will occur and I don't care to
catch them. So I need to modify the above regular expression to ignore the
two exceptions that will get generated.
I don't know how to do that. Your help will be much appreciated.
Thanks,
Z
Comment