mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
Refactoring, move more functionality into Manager
This commit is contained in:
parent
4b5bfcba80
commit
ef5d3a65f8
5 changed files with 258 additions and 190 deletions
14
src/main/java/cli/AttachmentInvalidException.java
Normal file
14
src/main/java/cli/AttachmentInvalidException.java
Normal 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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue