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

com.mindee.MindeeException Maven / Gradle / Ivy

The newest version!
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);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy