mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
10 lines
252 B
Java
10 lines
252 B
Java
package org.briarproject.api;
|
|
|
|
import java.io.IOException;
|
|
|
|
/** An exception that indicates an unrecoverable formatting error. */
|
|
public class FormatException extends IOException {
|
|
|
|
private static final long serialVersionUID = 2274966775687766337L;
|
|
}
|