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

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

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

/** this exception should be thrown when an equality assertion fails */
public class ReflectionAssertionException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public ReflectionAssertionException() {
    super();
  }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy