Initial commit

This commit is contained in:
Dave
2014-12-16 01:01:48 +02:00
commit 38c2d0de5d
30 changed files with 1377 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package nodash.exceptions;
import nodash.models.NoInfluence;
public class NoCannotGetInfluenceException extends NoDashException {
private static final long serialVersionUID = 4581361079067540974L;
private NoInfluence returnable;
public NoCannotGetInfluenceException(NoInfluence returnable) {
super();
this.returnable = returnable;
}
public NoInfluence getResponseInfluence() {
return returnable;
}
}