mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 02:50:39 +00:00
13 lines
382 B
Java
13 lines
382 B
Java
package org.asamk.signal;
|
|
|
|
import org.freedesktop.dbus.exceptions.DBusExecutionException;
|
|
|
|
public class AttachmentInvalidException extends DBusExecutionException {
|
|
public AttachmentInvalidException(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public AttachmentInvalidException(String attachment, Exception e) {
|
|
super(attachment + ": " + e.getMessage());
|
|
}
|
|
}
|