Refactoring, move more functionality into Manager

This commit is contained in:
AsamK 2015-12-12 11:38:15 +01:00
parent 4b5bfcba80
commit ef5d3a65f8
5 changed files with 258 additions and 190 deletions

View file

@ -0,0 +1,14 @@
package cli;
public class AttachmentInvalidException extends Exception {
private final String attachment;
public AttachmentInvalidException(String attachment, Exception e) {
super(e);
this.attachment = attachment;
}
public String getAttachment() {
return attachment;
}
}