All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dakusui.jcunit8.exceptions.BaseException Maven / Gradle / Ivy

There is a newer version: 0.8.17
Show newest version
package com.github.dakusui.jcunit8.exceptions;

public abstract class BaseException extends RuntimeException {
  protected BaseException(String message) {
    super(message);
  }

  protected BaseException(String format, Throwable t) {
    super(format, t);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy