com.mindee.MindeeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindee-api-java Show documentation
Show all versions of mindee-api-java Show documentation
Java Library to call Mindee's Off-The-Shelf and Custom APIs
package com.mindee;
/**
* Represent a Mindee exception.
*/
public class MindeeException extends RuntimeException {
public MindeeException(String errorMessage, Throwable err) {
super(errorMessage, err);
}
public MindeeException(String errorMessage) {
super(errorMessage);
}
}