Fix packages
parent
c9ebcc580f
commit
fa205c8915
@ -1,13 +0,0 @@
|
|||||||
package org.session.libsignal.exceptions;
|
|
||||||
|
|
||||||
|
|
||||||
public class InvalidMetadataMessageException extends Exception {
|
|
||||||
public InvalidMetadataMessageException(String s) {
|
|
||||||
super(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
public InvalidMetadataMessageException(Exception s) {
|
|
||||||
super(s);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@ -1,12 +0,0 @@
|
|||||||
/**
|
|
||||||
* Copyright (C) 2014-2016 Open Whisper Systems
|
|
||||||
*
|
|
||||||
* Licensed according to the LICENSE file in this repository.
|
|
||||||
*/
|
|
||||||
package org.session.libsignal.exceptions;
|
|
||||||
|
|
||||||
public class InvalidVersionException extends Exception {
|
|
||||||
public InvalidVersionException(String detailMessage) {
|
|
||||||
super(detailMessage);
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,22 +0,0 @@
|
|||||||
package org.session.libsignal.exceptions;
|
|
||||||
|
|
||||||
|
|
||||||
public abstract class ProtocolException extends Exception {
|
|
||||||
|
|
||||||
private final String sender;
|
|
||||||
private final int senderDevice;
|
|
||||||
|
|
||||||
public ProtocolException(Exception e, String sender, int senderDevice) {
|
|
||||||
super(e);
|
|
||||||
this.sender = sender;
|
|
||||||
this.senderDevice = senderDevice;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getSender() {
|
|
||||||
return sender;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getSenderDevice() {
|
|
||||||
return senderDevice;
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,8 +0,0 @@
|
|||||||
package org.session.libsignal.exceptions;
|
|
||||||
|
|
||||||
|
|
||||||
public class ProtocolInvalidMessageException extends ProtocolException {
|
|
||||||
public ProtocolInvalidMessageException(InvalidMessageException e, String sender, int senderDevice) {
|
|
||||||
super(e, sender, senderDevice);
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue