1 package org.smartcomps.twister.deployer.exception;
2
3 /***
4 * Base exception for the deployer part
5 */
6 public class DeploymentException extends Exception {
7
8 public DeploymentException(String message) {
9 super(message);
10 }
11
12 public DeploymentException(String message, Throwable cause) {
13 super(message, cause);
14 }
15
16 public DeploymentException(Throwable cause) {
17 super(cause);
18 }
19 }
This page was automatically generated by Maven