View Javadoc

1   package nl.gridshore.samples.training.integration.exceptions;
2   
3   /**
4    * Created by IntelliJ IDEA.
5    * User: jettro
6    * Date: Jan 18, 2008
7    * Time: 9:11:38 PM
8    * Generic Runtime exception that is the parent for all other integration exceptions.
9    */
10  public class IntegrationException extends RuntimeException {
11  
12      public IntegrationException(String s) {
13          super(s);
14      }
15  
16      public IntegrationException(String s, Throwable throwable) {
17          super(s, throwable);
18      }
19  }