BE-GRAPHE.2020-2021/src/main/org/insa/graph/io/BadFormatException.java
2018-03-07 17:10:02 +01:00

24 lines
394 B
Java

package org.insa.graph.io;
import java.io.IOException;
/**
* Exception thrown when a format-error is detected when reading a graph (e.g.,
* non-matching check bytes).
*
*/
public class BadFormatException extends IOException {
/**
*
*/
private static final long serialVersionUID = 1L;
/**
*
*/
public BadFormatException() {
super();
}
}