1 package org.davidmoten.rx.jdbc.exceptions;
2
3 public final class ColumnIndexOutOfRangeException extends SQLRuntimeException {
4
5 private static final long serialVersionUID = 900639264983427617L;
6
7 public ColumnIndexOutOfRangeException(String message) {
8 super (message);
9 }
10
11 }