01: /* DDStepsException.java
02: *
03: * DDSteps - Data Driven JUnit Test Steps
04: * Copyright (C) 2005 Jayway AB
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License version 2.1 as published by the Free Software Foundation.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, visit
17: * http://www.opensource.org/licenses/lgpl-license.php
18: */
19: package org.ddsteps;
20:
21: /**
22: * Generic runtime exception.
23: *
24: * @author adam
25: * @version $Id: DDStepsException.java,v 1.1 2005/12/03 12:51:41 adamskogman Exp $
26: */
27: public class DDStepsException extends RuntimeException {
28:
29: /**
30: *
31: */
32: private static final long serialVersionUID = 3617579301306905907L;
33:
34: /**
35: *
36: */
37: public DDStepsException() {
38: super ();
39: }
40:
41: /**
42: * @param message
43: */
44: public DDStepsException(String message) {
45: super (message);
46: }
47:
48: /**
49: * @param cause
50: */
51: public DDStepsException(Throwable cause) {
52: super (cause);
53: }
54:
55: /**
56: * @param message
57: * @param cause
58: */
59: public DDStepsException(String message, Throwable cause) {
60: super(message, cause);
61: }
62:
63: }
|