mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-13 03:09:04 +01:00
This change will allow to pass message dependencies from the client validators to the ValidationManager.
21 lines
360 B
Java
21 lines
360 B
Java
package org.briarproject.api.sync;
|
|
|
|
import java.io.IOException;
|
|
|
|
/** An exception that indicates an invalid message. */
|
|
public class InvalidMessageException extends IOException {
|
|
|
|
public InvalidMessageException() {
|
|
super();
|
|
}
|
|
|
|
public InvalidMessageException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public InvalidMessageException(Throwable t) {
|
|
super(t);
|
|
}
|
|
|
|
}
|