1 package com.loribel.commons.abstraction;
2
3 /***
4 * Interface catchable.
5 *
6 * @author Grégory Borelli
7 */
8 public interface GB_Catchable
9 {
10 /***
11 * Catches exception.
12 * Returns true if after exception continue.
13 */
14 boolean catchException(
15 Throwable a_exception);
16
17 }