/** * 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 retrieving non-existent categories. */ public class CategoryNotFoundException extends ObjectNotFoundException { /** * the id for serialization. */ private static final long serialVersionUID = 1531913600783345488L; /** * Bean constructor. * @param message * @param cause */ protected CategoryNotFoundException(final String message, final Exception cause) { super(message, cause); } /** * Bean constructor. * @param message */ public CategoryNotFoundException(final String message) { super(message); } /** * Bean constructor. * @param cause */ public CategoryNotFoundException(final Exception cause) { super(cause); } }