001package io.ebeanservice.docstore.api;
002
003/**
004 * Can be thrown when a document is unexpectedly not found in a document store.
005 */
006public class DocumentNotFoundException extends RuntimeException {
007
008  private static final long serialVersionUID = 2066138180892685276L;
009
010  /**
011   * Construct with a message.
012   */
013  public DocumentNotFoundException(String message) {
014    super(message);
015  }
016
017}