
com.github.celldynamics.quimp.plugin.dic.DicException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of QuimP_ Show documentation
Show all versions of QuimP_ Show documentation
QuimP software, a set of plugins for ImageJ to quantify spatio-temporal patterns of fluorescently labeled proteins in the cortex of moving cells.
The newest version!
package com.github.celldynamics.quimp.plugin.dic;
import com.github.celldynamics.quimp.QuimpException;
/**
* Basic class derived from Exception for purposes of DICReconstruction module.
*
* @author p.baniukiewicz
*/
@SuppressWarnings("serial")
public class DicException extends QuimpException {
/**
* Main constructor.
*
* @param arg0 Reason of exception
*/
public DicException(final String arg0) {
super(arg0);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy