Last change
on this file since 38 was
2,
checked in by sherbold, 10 years ago
|
|
-
Property svn:mime-type set to
text/plain
|
File size:
845 bytes
|
Rev | Line | |
---|
[2] | 1 | package de.ugoe.cs.cpdp;
|
---|
| 2 |
|
---|
| 3 | /**
|
---|
| 4 | * Thrown if there is an error creating an experiment configuration.
|
---|
| 5 | * @author Steffen Herbold
|
---|
| 6 | */
|
---|
| 7 | public class ExperimentConfigurationException extends Exception {
|
---|
| 8 |
|
---|
| 9 | /**
|
---|
| 10 | * Standard serialization ID.
|
---|
| 11 | */
|
---|
| 12 | private static final long serialVersionUID = 1L;
|
---|
| 13 |
|
---|
| 14 | /**
|
---|
| 15 | * @see Exception#Exception()
|
---|
| 16 | */
|
---|
| 17 | public ExperimentConfigurationException() {
|
---|
| 18 | super();
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | /**
|
---|
| 22 | * @see Exception#Exception(String)
|
---|
| 23 | */
|
---|
| 24 | public ExperimentConfigurationException(String message) {
|
---|
| 25 | super(message);
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | /**
|
---|
| 29 | * @see Exception#Exception(String, Throwable)
|
---|
| 30 | */
|
---|
| 31 | public ExperimentConfigurationException(String message, Throwable e) {
|
---|
| 32 | super(message, e);
|
---|
| 33 | }
|
---|
| 34 |
|
---|
| 35 | /**
|
---|
| 36 | * @see Exception#Exception(Throwable)
|
---|
| 37 | */
|
---|
| 38 | public ExperimentConfigurationException(Throwable e) {
|
---|
| 39 | super(e);
|
---|
| 40 | }
|
---|
| 41 |
|
---|
| 42 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.