001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.sql; 005 006 import biz.hammurapi.RuntimeException; 007 008 /** 009 * Wrapper for java.sql.SQLException. 010 * @author Pavel Vlasov 011 * @version $Revision: 1.2 $ 012 */ 013 public class SQLRuntimeException extends RuntimeException { 014 015 /** 016 * Comment for <code>serialVersionUID</code> 017 */ 018 private static final long serialVersionUID = 4319645620415819897L; 019 020 public SQLRuntimeException() { 021 super(); 022 } 023 024 public SQLRuntimeException(String message) { 025 super(message); 026 } 027 028 public SQLRuntimeException(String message, Throwable cause) { 029 super(message, cause); 030 } 031 032 public SQLRuntimeException(Throwable cause) { 033 super(cause); 034 } 035 }