Initial commit
This commit is contained in:
18
src/nodash/exceptions/NoCannotGetInfluenceException.java
Normal file
18
src/nodash/exceptions/NoCannotGetInfluenceException.java
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user