package com.framsticks.util.dispatching; import com.framsticks.util.ExceptionHandler; import com.framsticks.util.FramsticksException; public class IgnoreExceptionHandler implements ExceptionHandler { private static final IgnoreExceptionHandler instance = new IgnoreExceptionHandler(); private IgnoreExceptionHandler() { } @Override public final void handle(FramsticksException exception) { } /** * @return the instance */ public static IgnoreExceptionHandler getInstance() { return instance; } }