Fix exceptions to work over dbus

This commit is contained in:
AsamK 2015-12-30 17:39:07 +01:00
parent 2a0f9f7629
commit 3d56067272
3 changed files with 18 additions and 19 deletions

View file

@ -1,14 +1,13 @@
package org.asamk.textsecure;
public class AttachmentInvalidException extends Exception {
private final String attachment;
import org.freedesktop.dbus.exceptions.DBusExecutionException;
public class AttachmentInvalidException extends DBusExecutionException {
public AttachmentInvalidException(String message) {
super(message);
}
public AttachmentInvalidException(String attachment, Exception e) {
super(e);
this.attachment = attachment;
}
public String getAttachment() {
return attachment;
super(attachment + ": " + e.getMessage());
}
}