com.almondtools.stringsandchars.io.IORuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stringsandchars Show documentation
Show all versions of stringsandchars Show documentation
Searching and Matching Strings and Chars with efficient algorithms.
The newest version!
package com.almondtools.stringsandchars.io;
import java.io.IOException;
public class IORuntimeException extends RuntimeException {
public IORuntimeException(IOException cause) {
super(cause);
}
}