1 package org.davidmoten.rx.jdbc.exceptions; 2 3 public class SQLRuntimeException extends RuntimeException { 4 5 private static final long serialVersionUID = -3879393806890615797L; 6 7 public SQLRuntimeException(Throwable e) { 8 super(e); 9 } 10 11 public SQLRuntimeException(String message) { 12 super(message); 13 } 14 15 }