In addition to checking if its instanceof , you can use try catch and catch NoSessionException
try { // Something that throws a throwable } catch (NoSessionException e) { // Its a NoSessionException } catch (Throwable t) { // catch all other Throwables }
km1 source share