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

com.github.dakusui.jcunit.exceptions.JCUnitException Maven / Gradle / Ivy

package com.github.dakusui.jcunit.exceptions;

public class JCUnitException extends RuntimeException {

  /**
   * A serial version UID.
   */
  private static final long serialVersionUID = 5469024857071326421L;

  /**
   * Creates an object of this class.
   *
   * @param message An error message for this object.
   * @param t       A nested throwable object.
   */
  public JCUnitException(String message, Throwable t) {
    super(message, t);
  }

  /**
   * Creates an object of this class.
   *
   * @param message An error message for this object.
   */
  public JCUnitException(String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy