1 package org.davidmoten.hilbert.exceptions;
2
3 import java.io.IOException;
4
5 public class IORuntimeException extends RuntimeException {
6
7 private static final long serialVersionUID = -2505330669950461931L;
8
9 public IORuntimeException(IOException e) {
10 super(e);
11 }
12
13 }