com.jupiter.tools.mvc.requester.MvcRequestException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mvc-requester Show documentation
Show all versions of mvc-requester Show documentation
MvcRequester is a tool to make and assert REST-API communication
The newest version!
package com.jupiter.tools.mvc.requester;
/**
* Created on 12.02.2019.
*
* @author Korovin Anatoliy
*/
public class MvcRequestException extends RuntimeException {
public MvcRequestException(Exception e) {
super(e);
}
}