com.flextrade.jfixture.exceptions.InvalidRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfixture Show documentation
Show all versions of jfixture Show documentation
JFixture is an open source library based on the popular .NET library, AutoFixture
package com.flextrade.jfixture.exceptions;
public class InvalidRequestException extends RuntimeException {
public InvalidRequestException(String message) {
super(message);
}
public InvalidRequestException(String message, Exception inner) {
super(message, inner);
}
}