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

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

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

import com.github.dakusui.jcunit.exceptions.JCUnitException;

/**
 * An exception thrown when an error made by 'users' of JCUnit user is detected.
 */
public class JCUnitParameterException extends JCUnitUserException {
  public JCUnitParameterException(String msg) {
    super(msg);
  }

  public JCUnitParameterException(String msg, Throwable t) {
    super(msg, t);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy