View Javadoc

1   package nl.gridshore.samples.training.integration.exceptions;
2   
3   import nl.gridshore.samples.training.integration.exceptions.IntegrationException;
4   
5   /**
6    * Created by IntelliJ IDEA.
7    * User: jettro
8    * Date: Jan 18, 2008
9    * Time: 9:13:15 PM
10   * Exception thrown when something is wrong with the input data
11   */
12  public class IntegrationInputDataException extends IntegrationException {
13      public IntegrationInputDataException(String s) {
14          super(s);
15      }
16  }