1 package com.github.davidmoten.rx.jdbc.exceptions;
2
3 import java.sql.SQLException;
4
5 public class SQLRuntimeException extends RuntimeException {
6
7 private static final long serialVersionUID = -2895807523709102758L;
8
9 public SQLRuntimeException(SQLException e) {
10 super(e);
11 }
12
13 public SQLRuntimeException(String message) {
14 super(message);
15 }
16 }