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

io.ebeanservice.docstore.api.DocumentNotFoundException Maven / Gradle / Ivy

There is a newer version: 15.8.0
Show newest version
package io.ebeanservice.docstore.api;

/**
 * Can be thrown when a document is unexpectedly not found in a document store.
 */
public class DocumentNotFoundException extends RuntimeException {

  private static final long serialVersionUID = 2066138180892685276L;

  /**
   * Construct with a message.
   */
  public DocumentNotFoundException(String message) {
    super(message);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy