mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
12 lines
314 B
Java
12 lines
314 B
Java
package org.asamk.signal.manager;
|
|
|
|
public class AttachmentInvalidException extends Exception {
|
|
|
|
public AttachmentInvalidException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public AttachmentInvalidException(String attachment, Exception e) {
|
|
super(attachment + ": " + e.getMessage());
|
|
}
|
|
}
|