com.google.code.or.io.CRCException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-replicator Show documentation
Show all versions of open-replicator Show documentation
Open Replicator is a high performance MySQL binlog parser written in Java.
package com.google.code.or.io;
import java.io.IOException;
import com.google.code.or.binlog.BinlogEventV4Header;
public class CRCException extends IOException {
/**
*
*/
private static final long serialVersionUID = -3079479140853693743L;
/**
*
*/
public CRCException(BinlogEventV4Header header) {
super("CRC Exception processing " + header);
}
}