1 package org.smartcomps.twister.engine.exception;
2
3 public class EngineRuntimeException extends RuntimeException {
4
5 public EngineRuntimeException(String s) {
6 super(s);
7 }
8
9 public EngineRuntimeException(String s, Throwable throwable) {
10 super(s, throwable);
11 }
12
13 public EngineRuntimeException(Throwable throwable) {
14 super(throwable);
15 }
16
17 }
This page was automatically generated by Maven