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