1 package org.smartcomps.twister.engine.exception;
2
3 /***
4 * Thrown when a structural incoherence is found in a process
5 * definition. Theoretically it should't happen if processes are
6 * well created but shit happens.
7 */
8 public class ProcessStructuralException extends EngineRuntimeException {
9
10 public ProcessStructuralException(String s) {
11 super(s);
12 }
13
14 public ProcessStructuralException(String s, Throwable throwable) {
15 super(s, throwable);
16 }
17
18 public ProcessStructuralException(Throwable throwable) {
19 super(throwable);
20 }
21 }
This page was automatically generated by Maven