mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-29 18:40:39 +00:00
14 lines
335 B
Java
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;
|
|
}
|
|
}
|