SymfonionInterruptedException.java

package com.github.dakusui.symfonion.exceptions;

public class SymfonionInterruptedException extends RuntimeException {
  public SymfonionInterruptedException(String message, Throwable cause) {
    super(message, cause);
  }
}