package com.github.dakusui.jcunitx.exceptions; public abstract class BaseException extends RuntimeException { protected BaseException(String message) { super(message); } protected BaseException(String format, Throwable t) { super(format, t); } }