1 package org.naftulin.configmgr; 2 3 /*** 4 * Signals that entry was not found in configuration management engine. 5 * 6 * @author Henry Naftulin 7 * @since 1.0 8 */ 9 public class EntryNotFoundException extends ConfigurationManagerException { 10 private static final long serialVersionUID = 1L; 11 12 /*** 13 * Constructs a new exception with null as detailed message. 14 */ 15 public EntryNotFoundException() { super(); } 16 17 /*** 18 * Constructs a new exception with the specified detail message and cause. 19 * @param message the detailed message. 20 * @param cause the cause for the exception. 21 */ 22 public EntryNotFoundException(final String message, final Throwable cause) { super(message, cause); } 23 24 /*** 25 * Constructs a new exception with detailed message. 26 * @param message the detailed message. 27 */ 28 public EntryNotFoundException(final String message) { super(message); } 29 30 /*** 31 * Constructs a new exception with specified cause 32 * @param cause the specified cause. 33 */ 34 public EntryNotFoundException(final Throwable cause) { super(cause); } 35 36 }