Add DbDriver, with support for a few popular JDBC drivers.
[squelch.git] / src / main / java / net / jaekl / squelch / SquelchException.java
1 package net.jaekl.squelch;
2
3 public class SquelchException extends Exception {
4         private static final long serialVersionUID = 1L;
5
6         public SquelchException(String msg) {
7                 super(msg);
8         }
9 }