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

io.annot8.api.exceptions.IncompleteException Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
/* Annot8 (annot8.io) - Licensed under Apache-2.0. */
package io.annot8.api.exceptions;

/**
 * Exception indicating that a builder has been asked to createContent a new object without having
 * been given all the required information
 */
public class IncompleteException extends Annot8RuntimeException {

  private static final long serialVersionUID = 1L;

  /**
   * Create an exception with the given message
   *
   * @param message the message for info
   */
  public IncompleteException(final String message) {
    super(message);
  }

  /**
   * Create an exception with the given message and a root cause
   *
   * @param message the message for info
   * @param t original exception
   */
  public IncompleteException(final String message, final Throwable t) {
    super(message, t);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy