01: /* ExcelDataException.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.dataset.excel;
20:
21: /**
22: * @author Adam
23: * @version $Id: ExcelDataException.java,v 1.1 2005/12/03 12:51:40 adamskogman Exp $
24: */
25: public class ExcelDataException extends RuntimeException {
26:
27: /**
28: * Serial UID
29: */
30: private static final long serialVersionUID = 3979265828812436023L;
31:
32: /**
33: *
34: */
35: public ExcelDataException() {
36: super ();
37: }
38:
39: /**
40: * @param message
41: */
42: public ExcelDataException(String message) {
43: super (message);
44: }
45:
46: /**
47: * @param cause
48: */
49: public ExcelDataException(Throwable cause) {
50: super (cause);
51: }
52:
53: /**
54: * @param message
55: * @param cause
56: */
57: public ExcelDataException(String message, Throwable cause) {
58: super(message, cause);
59: }
60:
61: }
|