source: java/main/src/main/java/com/framsticks/util/dispatching/IgnoreExceptionHandler.java @ 193

Last change on this file since 193 was 193, checked in by Maciej Komosinski, 10 years ago

Set svn:eol-style native for all textual files

  • Property svn:eol-style set to native
File size: 518 bytes
RevLine 
[99]1package com.framsticks.util.dispatching;
2
[105]3import com.framsticks.util.ExceptionHandler;
[99]4import com.framsticks.util.FramsticksException;
5
[105]6public class IgnoreExceptionHandler implements ExceptionHandler {
[99]7
8        private static final IgnoreExceptionHandler instance = new IgnoreExceptionHandler();
9
10        private IgnoreExceptionHandler() {
11        }
12
13        @Override
14        public final void handle(FramsticksException exception) {
15        }
16
17        /**
18         * @return the instance
19         */
20        public static IgnoreExceptionHandler getInstance() {
21                return instance;
22        }
23
24}
Note: See TracBrowser for help on using the repository browser.