/** * ESUP-Portail Helpdesk - Copyright (c) 2004-2009 ESUP-Portail consortium. */ package org.esupportail.helpdesk.exceptions; import org.esupportail.commons.exceptions.ObjectNotFoundException; /** * An exception thrown when trying to retrieve non-existent FAQs. */ public class FaqNotFoundException extends ObjectNotFoundException { /** * the id for serialization. */ private static final long serialVersionUID = 6327170015902973899L; /** * Bean constructor. * @param message * @param cause */ protected FaqNotFoundException(final String message, final Exception cause) { super(message, cause); } /** * Bean constructor. * @param message */ public FaqNotFoundException(final String message) { super(message); } /** * Bean constructor. * @param cause */ public FaqNotFoundException(final Exception cause) { super(cause); } }