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