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