1 package org.smartcomps.twister.deployer.exception;
2
3 /***
4 * Used when errors occured during the parsing of process description.
5 */
6 public class DocumentParsingException extends DeploymentException {
7 public DocumentParsingException(String message) {
8 super(message);
9 }
10
11 public DocumentParsingException(String message, Throwable cause) {
12 super(message, cause);
13 }
14
15 public DocumentParsingException(Throwable cause) {
16 super(cause);
17 }
18 }
This page was automatically generated by Maven