This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See http://git.codelutin.com/observe.git commit 6f72a08c5233fc8bfbca6536c5566c62b6cd86d5 Author: Tony CHEMIT <chemit@codelutin.com> Date: Sat Aug 29 10:05:54 2015 +0200 Ajout d'un exception si la relation RTP n'est pas trouvée --- .../LengthWeightParameterNotFoundException.java | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/observe-entities/src/main/java/fr/ird/observe/entities/referentiel/LengthWeightParameterNotFoundException.java b/observe-entities/src/main/java/fr/ird/observe/entities/referentiel/LengthWeightParameterNotFoundException.java new file mode 100644 index 0000000..76a257e --- /dev/null +++ b/observe-entities/src/main/java/fr/ird/observe/entities/referentiel/LengthWeightParameterNotFoundException.java @@ -0,0 +1,45 @@ +package fr.ird.observe.entities.referentiel; + +import java.util.Date; + +/** + * Created on 29/08/15. + * + * @author Tony Chemit - chemit@codelutin.com + */ +public class LengthWeightParameterNotFoundException extends RuntimeException { + + private static final long serialVersionUID = 1L; + + protected final Species species; + + protected final Ocean ocean; + + protected final Sex sex; + + protected final Date date; + + public LengthWeightParameterNotFoundException(Species species, Ocean ocean, Sex sex, Date date) { + this.species = species; + this.ocean = ocean; + this.sex = sex; + this.date = date; + } + + public Species getSpecies() { + return species; + } + + public Ocean getOcean() { + return ocean; + } + + public Sex getSex() { + return sex; + } + + public Date getDate() { + return date; + } + +} -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@list.forge.codelutin.com>.