Skip to content

Commit 11d0270

Browse files
author
mgeipel
committed
Renamed Morph back to Metamorph.
1 parent 52b452f commit 11d0270

27 files changed

+2619
-2619
lines changed

src/main/java/org/culturegraph/mf/exceptions/MorphException.java

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -13,40 +13,40 @@
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
1515
*/
16-
package org.culturegraph.mf.exceptions;
17-
18-
import org.culturegraph.mf.morph.Morph;
19-
20-
21-
/**
22-
* Thrown if an error occurs during the processing in {@link Morph}
23-
*
24-
* @author Markus Michael Geipel
25-
*/
26-
public class MorphException extends MetafactureException {
27-
28-
private static final long serialVersionUID = -3130648074493084946L;
29-
30-
/**
31-
* @param message
32-
*/
33-
public MorphException(final String message) {
34-
super(message);
35-
}
36-
37-
/**
38-
* @param cause
39-
*/
40-
public MorphException(final Throwable cause) {
41-
super(cause);
42-
}
43-
44-
/**
45-
* @param message
46-
* @param cause
47-
*/
48-
public MorphException(final String message, final Throwable cause) {
49-
super(message, cause);
50-
}
51-
52-
}
16+
package org.culturegraph.mf.exceptions;
17+
18+
import org.culturegraph.mf.morph.Metamorph;
19+
20+
21+
/**
22+
* Thrown if an error occurs during the processing in {@link Metamorph}
23+
*
24+
* @author Markus Michael Geipel
25+
*/
26+
public class MorphException extends MetafactureException {
27+
28+
private static final long serialVersionUID = -3130648074493084946L;
29+
30+
/**
31+
* @param message
32+
*/
33+
public MorphException(final String message) {
34+
super(message);
35+
}
36+
37+
/**
38+
* @param cause
39+
*/
40+
public MorphException(final Throwable cause) {
41+
super(cause);
42+
}
43+
44+
/**
45+
* @param message
46+
* @param cause
47+
*/
48+
public MorphException(final String message, final Throwable cause) {
49+
super(message, cause);
50+
}
51+
52+
}

0 commit comments

Comments
 (0)