You can use instanceof
to check it is of NoSessionException
or not.
Example:
if (exp instanceof NoSessionException) {
...
}
Assuming exp
is the Throwable
reference.
You can use instanceof
to check it is of NoSessionException
or not.
Example:
if (exp instanceof NoSessionException) {
...
}
Assuming exp
is the Throwable
reference.