
com.github.spartatech.testutils.exception.FieldNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sparta-test-utils-junit5 Show documentation
Show all versions of sparta-test-utils-junit5 Show documentation
Utility classes for unit testing. Port for Junit5 Jupiter
The newest version!
package com.github.spartatech.testutils.exception;
/**
*
* Field not found for DateAssertUtils
*
* @author Daniel Conde Diehl
*
* History:
* Dec 29, 2016 - Daniel Conde Diehl
*
*/
public class FieldNotFoundException extends RuntimeException {
private static final long serialVersionUID = 5417391757338884052L;
/**
* Constructor receiving message
*
* @param message error message
*/
public FieldNotFoundException(String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy