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

com.github.opennano.reflectionassert.exceptions.ReflectionAssertionInputException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
package com.github.opennano.reflectionassert.exceptions;

/**
 * Any problems caused by the objects being compared are reported with this exception. An example
 * would be using an unordered collection (like HashSet) in an ordered collection comparison. These
 * errors represent bad input not bugs.
 */
public class ReflectionAssertionInputException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public ReflectionAssertionInputException() {
    super();
  }

  public ReflectionAssertionInputException(String message, Throwable cause) {
    super(message, cause);
  }

  public ReflectionAssertionInputException(String message) {
    super(message);
  }

  public ReflectionAssertionInputException(Throwable cause) {
    super(cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy