signal-cli/src/main/java/org/asamk/textsecure/AttachmentInvalidException.java
2015-12-13 11:06:10 +01:00

14 lines
335 B
Java

package org.asamk.textsecure;
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;
}
}