View Javadoc
1   package com.github.celldynamics.quimp.plugin.dic;
2   
3   import com.github.celldynamics.quimp.QuimpException;
4   
5   /**
6    * Basic class derived from Exception for purposes of DICReconstruction module.
7    * 
8    * @author p.baniukiewicz
9    */
10  @SuppressWarnings("serial")
11  public class DicException extends QuimpException {
12  
13    /**
14     * Main constructor.
15     * 
16     * @param arg0 Reason of exception
17     */
18    public DicException(final String arg0) {
19      super(arg0);
20    }
21  
22  }