convex.etch.EtchCorruptionError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-core Show documentation
Show all versions of convex-core Show documentation
Convex core libraries and common utilities
The newest version!
package convex.etch;
@SuppressWarnings("serial")
public class EtchCorruptionError extends Error {
public EtchCorruptionError(String message) {
super(message);
}
}