1 package org.lsst.ccs.drivers.commons;
2
3 public class DriverException extends Exception {
4
5 private static final long serialVersionUID = -5286860795578160736L;
6
7 public DriverException() {
8 super();
9 }
10
11 public DriverException(String message, Throwable e) {
12 super(message, e);
13 }
14
15 public DriverException(String message) {
16 super(message);
17 }
18
19 public DriverException(Throwable e) {
20 super(e);
21 }
22
23 }