View Javadoc

1   /*
2    * Copyright 2011 Fraunhofer Gesellschaft, Munich, Germany,
3    * for its Fraunhofer Institute for Computer Architecture and Software
4    * Technology (FIRST), Berlin, Germany. All rights reserved.
5    * http://www.first.fraunhofer.de/
6    */
7   
8   package net.kwfgrid.gwes.exception;
9   
10  /**
11   * This exception encapsulates all Throwable java objects, i.e., Errors or RuntimeExceptions, that are not mapped onto
12   * specific exception. Necessary to ensure the logging of all runtime errors!
13   * @author Andreas Hoheisel (<a href="http://www.andreas-hoheisel.de">www.andreas-hoheisel.de</a>)
14   * @version $Id$
15   */
16  public class GWESException extends Throwable {
17  
18      public GWESException(String message) {
19          super(message);
20      }
21  
22      public GWESException(String message, Throwable cause) {
23          super(message, cause);
24      }
25  
26      public GWESException(Throwable cause) {
27          super(cause);
28      }
29  }