001package com.avaje.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  /**
009   * Construct with a message.
010   */
011  public DocumentNotFoundException(String message) {
012    super(message);
013  }
014
015}